PHP code example of cloud-castle / equifax-check-docks
1. Go to this page and download the library: Download cloud-castle/equifax-check-docks 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/ */
cloud-castle / equifax-check-docks example snippets
uodCastle\Check\Snils\Snils;
use CluodCastle\Check\Inn\Inn;
use CluodCastle\Check\Uid\Uidgen;
// Сгенерировать uid
$uid = new Uidgen();
// Получить uid без хеша (без контрольного символа)
$uid->getUid();
// Получить uid с хешем (с контрольным символом)
$uid->getUidHash();
// Проверить ИНН
$inn = new Inn('246001622824');
// Вернет true если ИНН корректен или false в противном случае
$inn->verify();
// Проверить СНИЛС
$snils = new Snils('02846235860');
// Вернет true если СНИЛС корректен или false в противном случае
$snils->verify();