PHP code example of centrex / laravel-open-exchange-rates
1. Go to this page and download the library: Download centrex/laravel-open-exchange-rates 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/ */
centrex / laravel-open-exchange-rates example snippets
return [
'app_id' => '*****************************', // your own api key
'default_base_currency' => 'USD'
];
use Centrex\LaravelOpenExchangeRates\Client;
class SomeController extends Controller
{
private $client;
public function __construct(Client $client)
{
$this->client = $client;
}
public function someAction()
{
$coefficient = $this->client->latest('USD,RUB,AWG');
$historical_coefficent $this->client->historical('2011-03-05', 'USD,RUB,AWG');
// e.t.c...
// Change in base currencies (not allowed for free account) and requests for the coefficients of all currencies relative to.
$coefficient = $this->client->currency('RUB')->latest();
}
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.