aval24/czname

Routines for normalizing and formatting czech names and personal info

v1.0.5 2025-04-10 08:05 UTC

This package is auto-updated.

Last update: 2025-04-10 08:06:45 UTC


README

Tooling for normalizing names

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist aval24/czname "*"

or add

"aval24/czname": "*"

to the require section of your composer.json.

Usage

use aval24\czname\Czname;

$name = "Mgr. JANA TALÁKOVÁ";

$test1 = Czname::purge($name);

echo "Source: $name\n"; 
echo "Result: $test1\n";