validator cpf cnpj
v1.0.1
Installation | Technologien | Verwenden von | Tests
Eine einfache Klasse zur Validierung von CPF|CNPJ.
Über Komponist
composer require paradisesessions/validator-cpf-cnpj
Beispiel für die Verwendung zur Validierung und Formatierung von CPF.
$ document = new ParadiseSessions Validator Cpf ( ' 123.123.123-00 ' );
// Verify is valid
$ document -> isValid ();
// Check is valid and format numbers
$ document -> format ();
// Verify is valid and return raw data
$ document -> getDocument ();
Beispiel für die Verwendung zur Validierung und Formatierung von CNPJ.
$ document = new ParadiseSessions Validator Cnpj ( ' 06.990.590/0001-23 ' );
// Verify is valid
$ document -> isValid ();
// Check is valid and format numbers
$ document -> format ();
// Verify is valid and return raw data
$ document -> getDocument ();
Beispiel für die Verwendung zur Validierung und Formatierung von CPF oder CNPJ, bezogen auf den Typ der Klasse.
$ document = new ParadiseSessions Validator Document ( ' ... ' );
// Verify is valid
$ document -> isValid ();
// Check is valid and format numbers
$ document -> format ();
// Verify is valid and return raw data
$ document -> getDocument ();
Getestet mit PHPUnit realisierte Klasse.
composer test