-
Notifications
You must be signed in to change notification settings - Fork 41
Open
Description
Some passports have more then one last name eg Portugese. The MRZ parser assumes only one lastname is present.
Possibly modify getFirstLastName to explode the lastName
private function getFirstLastName(string $fullName): array
{
[$lastName, $firstName] = explode('<<', $fullName);
return [explode('<', $lastName), explode('<', $firstName)];
}
JamesonBR and nssnl
Metadata
Metadata
Assignees
Labels
No labels