PHP code example of lsv / ean-search

1. Go to this page and download the library: Download lsv/ean-search 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/ */

    

lsv / ean-search example snippets


\Lsv\EanSearch\Request::setApiToken('<token>');

\Lsv\EanSearch\Utils\LanguageEnum::SPANISH

$response = \Lsv\EanSearch\BarcodeLookup::request('<barcode>', '<language>');
// Response is a \Lsv\EanSearch\Model\ProductModel object

$response = \Lsv\EanSearch\BarcodePrefixSearch::request('<barcode prefix>', '<language>');
// Response is an array of \Lsv\EanSearch\Model\ProductModel objects

$response = \Lsv\EanSearch\VerifyChecksum::request('<barcode>');
// Response is a \Lsv\EanSearch\Model\VerifyChecksumModel object

$response = \Lsv\EanSearch\BarcodeImage::request('<barcode>', '<width>', '<height>');
// <width> and <height> is optional
// Response is a \Lsv\EanSearch\Model\BarcodeImageModel object

$response = \Lsv\EanSearch\IssuingCountryLookup::request('<barcode>');
// Response is a \Lsv\EanSearch\Model\IssuingCountryModel object

$response = \Lsv\EanSearch\ProductSearch::request('<product name>', '<language>');
// Response is an array of \Lsv\EanSearch\Model\ProductModel objects

\Lsv\EanSearch\Utils\CategoryEnum::ART

$response = \Lsv\EanSearch\CategorySearch::request('<category>', '<product name>', '<language>');
// <product name> is optional
// Response is an array of \Lsv\EanSearch\Model\ProductModel objects

$response = \Lsv\EanSearch\AccountStatus::request();
// Response is a \Lsv\EanSearch\Model\AccountStatusModel object