thalidzhokov / exchange-rates-cbrf
ExchangeRatesCBRF Class to get exchange rates of the Central Bank of Russia
Installs: 2 322
Dependents: 0
Suggesters: 0
Security: 0
Stars: 10
Watchers: 2
Forks: 4
Open Issues: 0
Requires
- php: ^5.0 || ^7.0
- ext-simplexml: *
- ext-soap: *
This package is auto-updated.
Last update: 2024-12-06 22:20:53 UTC
README
Requirements
- PHP 5 or greater
- SOAP and SimpleXML
Installation
Install via Composer
composer require thalidzhokov/exchange-rates-cbrf
OR include ExchangeRatesCBRF.php in your PHP code
require_once("ExchangeRatesCBRF.php");
Usage
Examples of using ExchangeRatesCBRF Class to get exchange rates of the Central Bank of Russia
Example 1
Get exchange rate of Ukrainian Hryvnia (Alphabetic currency code - UAH) on 25.05.2015
$rates = new ExchangeRatesCBRF("2015-05-25"); echo $rates->GetRate("UAH");
Example 2
Get cross-rate of the US Dollar to Euro on 26.06.2015
$rates = new ExchangeRatesCBRF("2015-06-26"); echo $rates->GetCrossRate("EUR", "USD");
Example 3
Get exchange rates of the Central Bank of Russia on 27.07.2015
$rates = new ExchangeRatesCBRF("2015-07-27"); echo $rates->GetRates();