1. Go to this page and download the library: Download aasanakey/fixerphp 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/ */
aasanakey / fixerphp example snippets
use Aasanakey\Fixer\Fixer;
Fixer::key('your api key')
->convert()
->from('USD')
->to('EUR')
->get();
use Aasanakey\Fixer\Fixer;
Fixer::key('your api key')
->convert()
->from('USD')
->to('EUR')
->amount(50)
->get();
use Aasanakey\Fixer\Fixer;
Fixer::key('your api key')
->convert()
->from('USD')
->to('EUR')
->date('2019-08-01')
->get();
use Aasanakey\Fixer\Fixer;
Fixer::key('your api key')
->convert()
->from('USD')
->to('EUR')
->round(2)
->get();
use Aasanakey\Fixer\Fixer;
Fixer::key('your api key')
->rates()
->latest()
->symbols(['USD', 'EUR', 'EGP']) //An array of currency codes to limit output currencies
->base('GBP') //Changing base currency (default: EUR). Enter the three-letter currency code of your preferred base currency.
->get();
use Aasanakey\Fixer\Fixer;
Fixer::key('your api key')
->rates()
->historical('2013-12-24') //`YYYY-MM-DD` Required date parameter to get the rates for
->get();
/**
[
"base": "GBP",
"date": "2013-12-24",
"historical": true,
"rates": {
"CAD": 1.739516,
"EUR": 1.196476,
"USD": 1.636492
},
"success": true,
"timestamp": 1387929599
]
*/
Fixer::key('your api key')
->rates()
->historical('2013-12-24')
->symbols(['USD', 'EUR', 'EGP']) //An array of currency codes to limit output currencies
->base('GBP')
->get();
/**
[
"base": "GBP",
"date": "2013-12-24",
"historical": true,
"rates": {
"CAD": 1.739516,
"EUR": 1.196476,
"USD": 1.636492
},
"success": true,
"timestamp": 1387929599
]
*/
use Aasanakey\Fixer\Fixer;
Fixer::key('your api key')
->rates()
->historical('2020-01-01')
->symbols(['USD', 'EUR', 'CZK'])
->base('GBP')
->get();