PHP code example of podrecznikomat / php-isbn-api

1. Go to this page and download the library: Download podrecznikomat/php-isbn-api 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/ */

    

podrecznikomat / php-isbn-api example snippets


use Podrecznikomat\IsbnApi\Client;
use Podrecznikomat\IsbnApi\IsbnEnum;

$client = new Client(IsbnEnum::E_ISBN_PL);
$book = $client->api()->getBookByIsbn('9788324677658');

// Access book data
echo $book->getFullTitle();
echo $book->getAuthorsAsString();
bash
composer