PHP code example of erinslist / erinslist-php-sdk

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

    

erinslist / erinslist-php-sdk example snippets


const ERL_API_KEY = 'YOUR_ERL_API_KEY';
const ERL_API_SECRET = 'YOUR_ERL_SECRET_KEY';

$erl = new \Erinslist\Erinslist(ERL_API_KEY, ERL_API_SECRET);
$result = $erl->evaluate('3239 110th St, East Elmhurst, NY, 11369');

print_r($result);
term
$ composer