PHP code example of rechtlogisch / ust-id

1. Go to this page and download the library: Download rechtlogisch/ust-id 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/ */

    

rechtlogisch / ust-id example snippets


isUstIdValid('DE123456788'); // => true

use Rechtlogisch\UstId\UstId;

(new UstId('DE123456788'))
    ->validate() // ValidationResult::class
    ->isValid(); // => true

validateUstId('DE12345678')->getErrors();
// [
//   'Rechtlogisch\UstId\Exceptions\InvalidUstIdLength'
//    => 'USt-ID must be 11 characters long. Provided USt-ID is: 10 characters long.',
// ]

use Rechtlogisch\UstId\UstId;

(new UstId('DE12345678'))
    ->validate()
    ->getErrors();
// [
//   'Rechtlogisch\UstId\Exceptions\InvalidUstIdLength'
//    => 'USt-ID must be 11 characters long. Provided USt-ID is: 10 characters long.',
// ]