PHP code example of rocketfellows / it-vat-format-validator

1. Go to this page and download the library: Download rocketfellows/it-vat-format-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/ */

    

rocketfellows / it-vat-format-validator example snippets


$validator = new ITVatFormatValidator();
$validator->isValid('IT12345678901');
$validator->isValid('12345678901');

$validator = new ITVatFormatValidator();
$validator->isValid('IT1234567890');
$validator->isValid('IT123456789011');
$validator->isValid('123456789011');
$validator->isValid('1234567890');
$validator->isValid('DE12345678901');