visionappscz/cz-ic-validator

Validate CZ IC

Maintainers

Package info

github.com/visionappscz/cz-ic-validator

Homepage

pkg:composer/visionappscz/cz-ic-validator

Statistics

Installs: 5 559

Dependents: 1

Suggesters: 0

Stars: 0

Open Issues: 3

v1.0.0 2016-09-08 12:03 UTC

This package is not auto-updated.

Last update: 2026-03-15 03:56:29 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!";
}