PHP code example of consultora-grada / ean13-validator

1. Go to this page and download the library: Download consultora-grada/ean13-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/ */

    

consultora-grada / ean13-validator example snippets


use Grada\Ean13validator\Ean13validatorClass;

$vc = new Ean13validatorClass();
$result = $vc->validate_EAN13Barcode("0123456789");   // false because it is not a valid EAN13 barcode

$result1 = $vc->validate_EAN13Barcode("7790040111004");   // true because it is a valid EAN13 barcode