PHP code example of devsergeev / inn-validator

1. Go to this page and download the library: Download devsergeev/inn-validator 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/ */

    

devsergeev / inn-validator example snippets

`
use \devsergeev\validators\InnValidator;

try {
    InnValidator::check($inn);
} catch (InvalidArgumentException $e) {
    switch ($e->getCode()) {
        case InnValidator::CODE_INVALID_LENGHT:
            $message = 'Ваше сообщение о недопустимой длине ИНН';
            break;
        case InnValidator::CODE_NOT_ONLY_DIGITS:
            $message = 'Ваше сообщение о том, что ИНН должен состоять только из цифр';
            break;
        case InnValidator::CODE_INVALID_CHECKSUM:
            $message = 'Ваше сообщение о неправильной контрольной сумме';
            break;
    }
    echo $message;
}