We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Try this:
$parser = new FullNameParser(); $split_name = $parser->parse_name('Fname Lname, Ph.D.'); var_dump($split_name); /* array(7) { ["salutation"]=> string(0) "" ["fname"]=> string(11) "Fname Lname" ["initials"]=> string(0) "" ["lname"]=> string(5) "Ph.D." ["lname_base"]=> string(5) "Ph.D." ["lname_compound"]=> string(0) "" ["suffix"]=> string(0) "" } */
The text was updated successfully, but these errors were encountered:
hmmm. that's not good. feel free to send me a pull request if you figured out the fix already.
Sorry, something went wrong.
No branches or pull requests
Try this:
The text was updated successfully, but these errors were encountered: