1. Go to this page and download the library: Download vonlab/kz-iin library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
vonlab / kz-iin example snippets
use VonLab\KzIin\IinParser;
use VonLab\KzIin\IinValidator;
$validator = new IinValidator(new IinParser());
try {
if ($validator->validate('your-iin-here')) {
echo "IIN is valid.";
}
} catch (\Exception $e) {
echo "Validation failed: " . $e->getMessage();
}
use VonLab\KzIin\IinParser;
use VonLab\KzIin\IinValidator;
$validator = new IinValidator(new IinParser());
if ($validator->isValid('your-iin-here')) {
echo "IIN is valid.";
} else {
echo "Validation failed: " . $validator->getError();
}
use VonLab\KzIin\IinGenerator;
use VonLab\KzIin\Enums\GenderEnum;
use VonLab\KzIin\Data\BirthDate;
// Generate an IIN with random birthdate and gender
$generator = new IinGenerator();
$iin = $generator->generate();
echo "Generated IIN: $iin";
// Generate an IIN with specific birthdate and gender
$birthDate = new BirthDate(1990, 1, 1);
$gender = GenderEnum::Male;
$iin = $generator->generate($birthDate, $gender);
echo "Generated IIN: $iin";