PHP code example of rocketfellows / lv-vat-format-validator
1. Go to this page and download the library: Download rocketfellows/lv-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 / lv-vat-format-validator example snippets
$validator = new LVVatFormatValidator();
$validator->isValid('LV12345678901');
$validator->isValid('12345678901');
$validator = new LVVatFormatValidator();
$validator->isValid('LV123456789011');
$validator->isValid('LV1234567890');
$validator->isValid('123456789011');
$validator->isValid('1234567890');
$validator->isValid('DE12345678901');