This repository has been archived by the owner on Apr 30, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathnameparse.php
255 lines (224 loc) · 9.99 KB
/
nameparse.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
<?php
/*
Name: nameparse.php
Version: 0.2a
Date: 030507
First: 030407
License: GNU General Public License v2
Bugs: If one of the words in the middle name is Ben (or St., for that matter),
or any other possible last-name prefix, the name MUST be entered in
last-name-first format. If the last-name parsing routines get ahold
of any prefix, they tie up the rest of the name up to the suffix. i.e.:
William Ben Carey would yield 'Ben Carey' as the last name, while,
Carey, William Ben would yield 'Carey' as last and 'Ben' as middle.
This is a problem inherent in the prefix-parsing routines algorithm,
and probably will not be fixed. It's not my fault that there's some
odd overlap between various languages. Just don't name your kids
'Something Ben Something', and you should be alright.
*/
function ctf_form_norm_str($string) {
return trim(strtolower(
str_replace('.','',$string)));
}
function ctf_form_in_array_norm($needle,$haystack) {
return in_array(ctf_form_norm_str($needle),$haystack);
}
function ctf_form_parse_name($fullname) {
$titles = array('dr','miss','mr','mrs','ms','judge');
$prefices = array('ben','bin','da','dal','de','del','der','de','e',
'la','le','san','st','ste','van','vel','von');
$suffices = array('esq','esquire','jr','sr','2','ii','iii','iv');
$pieces = explode(',',preg_replace('/\s+/',' ',trim($fullname)));
$n_pieces = count($pieces);
$out = array();
switch($n_pieces) {
case 1: // array(title first middles last suffix)
$subp = explode(' ',trim($pieces[0]));
$n_subp = count($subp);
for($i = 0; $i < $n_subp; $i++) {
$curr = trim(@$subp[$i]);
$next = trim(@$subp[$i+1]);
if($i == 0 && ctf_form_in_array_norm($curr,$titles)) {
$out['title'] = $curr;
continue;
}
if(!isset($out['firstName'])) {
$out['firstName'] = $curr;
continue;
}
if($i == $n_subp-2 && $next && ctf_form_in_array_norm($next,$suffices)) {
if(isset($out['lastName'])) {
$out['lastName'] .= " $curr";
}
else {
$out['lastName'] = $curr;
}
$out['suffix'] = $next;
break;
}
if($i == $n_subp-1) {
if(isset($out['lastName'])) {
$out['lastName'] .= " $curr";
}
else {
$out['lastName'] = $curr;
}
continue;
}
if(ctf_form_in_array_norm($curr,$prefices)) {
if($out['lastName']) {
$out['lastName'] .= " $curr";
}
else {
$out['lastName'] = $curr;
}
continue;
}
if($next == 'y' || $next == 'Y') {
if($out['lastName']) {
$out['lastName'] .= " $curr";
}
else {
$out['lastName'] = $curr;
}
continue;
}
if(isset($out['lastName'])) {
$out['lastName'] .= " $curr";
continue;
}
if(isset($out['middleName'])) {
$out['middleName'] .= " $curr";
}
else {
$out['middleName'] = $curr;
}
}
break;
case 2:
switch(ctf_form_in_array_norm($pieces[1],$suffices)) {
case TRUE: // array(title first middles last,suffix)
$subp = explode(' ',trim($pieces[0]));
$n_subp = count($subp);
for($i = 0; $i < $n_subp; $i++) {
$curr = trim($subp[$i]);
$next = trim($subp[$i+1]);
if($i == 0 && ctf_form_in_array_norm($curr,$titles)) {
$out['title'] = $curr;
continue;
}
if(!isset($out['firstName'])) {
$out['firstName'] = $curr;
continue;
}
if($i == $n_subp-1) {
if(isset($out['lastName'])) {
$out['lastName'] .= " $curr";
}
else {
$out['lastName'] = $curr;
}
continue;
}
if(ctf_form_in_array_norm($curr,$prefices)) {
if(isset($out['lastName'])) {
$out['lastName'] .= " $curr";
}
else {
$out['lastName'] = $curr;
}
continue;
}
if($next == 'y' || $next == 'Y') {
if(isset($out['lastName'])) {
$out['lastName'] .= " $curr";
}
else {
$out['lastName'] = $curr;
}
continue;
}
if(isset($out['lastName'])) {
$out['lastName'] .= " $curr";
continue;
}
if(isset($out['middleName'])) {
$out['middleName'] .= " $curr";
}
else {
$out['middleName'] = $curr;
}
}
$out['suffix'] = trim($pieces[1]);
break;
case FALSE: // array(last,title first middles suffix)
$subp = explode(' ',trim($pieces[1]));
$n_subp = count($subp);
for($i = 0; $i < $n_subp; $i++) {
$curr = trim($subp[$i]);
$next = trim($subp[$i+1]);
if($i == 0 && ctf_form_in_array_norm($curr,$titles)) {
$out['title'] = $curr;
continue;
}
if(!isset($out['firstName'])) {
$out['firstName'] = $curr;
continue;
}
if($i == $n_subp-2 && $next &&
ctf_form_in_array_norm($next,$suffices)) {
if(isset($out['middleName'])) {
$out['middleName'] .= " $curr";
}
else {
$out['middleName'] = $curr;
}
$out['suffix'] = $next;
break;
}
if($i == $n_subp-1 && ctf_form_in_array_norm($curr,$suffices)) {
$out['suffix'] = $curr;
continue;
}
if(isset($out['middleName'])) {
$out['middleName'] .= " $curr";
}
else {
$out['middleName'] = $curr;
}
}
$out['lastName'] = $pieces[0];
break;
}
unset($pieces);
break;
case 3: // array(last,title first middles,suffix)
$subp = explode(' ',trim($pieces[1]));
$n_subp = count($subp);
for($i = 0; $i < $n_subp; $i++) {
$curr = trim($subp[$i]);
$next = trim($subp[$i+1]);
if($i == 0 && ctf_form_in_array_norm($curr,$titles)) {
$out['title'] = $curr;
continue;
}
if(!isset($out['firstName'])) {
$out['firstName'] = $curr;
continue;
}
if(isset($out['middleName'])) {
$out['middleName'] .= " $curr";
}
else {
$out['middleName'] = $curr;
}
}
$out['lastName'] = trim($pieces[0]);
$out['suffix'] = trim($pieces[2]);
break;
default: // unparseable
unset($pieces);
break;
}
return $out;
}