PHP code example of rebuy / ean-isbn-library
1. Go to this page and download the library: Download rebuy/ean-isbn-library 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/ */
rebuy / ean-isbn-library example snippets
$parser = new Parser();
$identifier = $parser->parse('978-0091956141');
echo $identifier; // will print '9780091956141'
$converter = new Converter();
$conversion = $converter->convert($identifier);
echo $conversion; // will print '0091956145'