PHP code example of ivuorinen / business-data-fetcher

1. Go to this page and download the library: Download ivuorinen/business-data-fetcher 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/ */

    

ivuorinen / business-data-fetcher example snippets



ent  = new Ivuorinen\BusinessDataFetcher\BusinessDataFetcher();
try {
    $results = $client->getBusinessInformation('1639413-9');
    print_r($results);
} catch (\GuzzleHttp\Exception\GuzzleException $e) {
    var_dump($e);
}