PHP code example of vonlab / kz-iin

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";



use VonLab\KzIin\IinParser;
use VonLab\KzIin\Utils\DateConverter;
use VonLab\KzIin\Exceptions\InvalidIinFormatException;

$parser = new IinParser();

try {
    $iinData = $parser->parse('your-iin-here');
    
    echo "Birth Date: " . DateConverter::toDateString($iinData->birthDate);
    echo "Year of birth: " . $iinData->birthDate->year;
    echo "Month of birth: " . $iinData->birthDate->month;
    echo "Day of birth: " . $iinData->birthDate->day;
    echo "Gender: " . $iinData->gender->value;
    echo "Century Gender Digit: " . $iinData->centuryGenderDigit;
    echo "Registration Number: " . $iinData->registrationNumber;
    echo "Control Digit: " . $iinData->controlDigit;
} catch (InvalidIinFormatException $e) {
    echo "Invalid IIN format: " . $e->getMessage();
}