aval24 / cz-routines
Routines for normalizing and formatting czech names and personal info
v1.0.4
2025-04-10 08:08 UTC
README
CZ Names
Tooling for normalizing names
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist aval24/cz-routines "*"
or add
"aval24/cz-routines": "*"
to the require
section of your composer.json.
Usage
use aval24\czroutines\CZNames; $name = "Mgr. JANA TALÁKOVÁ"; $test1 = CZNames::purge($name); echo "Source: $name\n"; echo "Result: $test1\n";