/*
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;
}
DÜZTEL | İletişim





Sevdiklerinizi ve Sizi Güvende Tutuyoruz..
Hoşgeldiniz. Mail göndererek bizimle hızlı iletişime geçebilirsiniz.>
Merkez:
Tel: 0380 524 77 16 Fax: 524 84 12
Azmimilli Mahallesi Aydınpınar Caddesi Serhat Sokak No:1/B DÜZCE
Bolu Mağaza:
Tel: 0374 217 20 01
İhsaniye Mahallesi Stadyum Caddesi Şen Apt. No:6/D BOLU
Fabrika:
Tel: 0380 531 33 71 Fax: 531 36 82
Çınarlı Köyü DÜZCE
web: www.duztel.com mail: info@duztel.com