1. Go to this page and download the library: Download h4kuna/ares 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/ */
h4kuna / ares example snippets
use h4kuna\Ares;
$ares = (new Ares\AresFactory())->create();
try {
$response = $ares->loadBasic('87744473');
/* @var $response Ares\Ares\Core\Data */
var_dump($response);
} catch (Ares\Exceptions\IdentificationNumberNotFoundException $e) {
// log identification number, why is bad? Or make nothing.
} catch (Ares\Exceptions\AdisResponseException $e) {
// if validation by adis failed, but data from ares returned
/* @var $response Ares\Ares\Core\Data */
$response = $e->data;
$response->adis === null; // true
var_dump($e->getMessage());
} catch (Ares\Exceptions\ServerResponseException $e) {
// no response from server or broken json
}
use h4kuna\Ares;
/** @var Ares\Ares $ares */
$numbers = ['one' => '25596641', 'two' => '26713250', 'three' => '27082440', 'four' => '11111111'];
try {
foreach ($ares->loadBasicMulti($numbers) as $name => $r) {
var_dump($name, $r->company);
}
} catch (Ares\Exceptions\ServerResponseException $e) {
// no response from server or broken json
}