visionappscz / cz-ic-validator
Validate CZ IC
Installs: 4 633
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 5
Forks: 0
Open Issues: 3
Requires
- php: >=5.3.0
Requires (Dev)
This package is not auto-updated.
Last update: 2024-11-09 20:07:03 UTC
README
The Validator for validation of CZ IC based on the code written by David Grudl.
Getting Started
Installing
Install with composer
require visionappscz/cz-ic-validator
Usage example
$validator = new CZICValidator();
if ($validator->validate('12345678')) {
echo "IC is valid.";
} else {
echo "IC is not valid!";
}