PHP code example of andydune / currency-rate-cbr

1. Go to this page and download the library: Download andydune/currency-rate-cbr 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/ */

    

andydune / currency-rate-cbr example snippets


use AndyDune\CurrencyRateCbr\DailyRate;

$rate = new DailyRate();
$rate->setDate(new \DateTime()); // не обязательно - по умолчанию используется текущая дата 
$isOk = $rate->retrieve(); // true если данные успешно получены

// Извлекаем курс доллара 

/** @var DailyRateItem $item */
$item = $rate->get('usd'); // код валюты, регистр не важен

$item->getDate(); // \DateTime::class - объект даты
$item->getCharCode(); // код валюты: USD
$item->getValue(); // цена: 63,1394
$item->getNominal(); // номинал: 1
$item->getName(); // наименование: Доллар США
$item->getValueId(); // ID валюты: R01235
$item->getNumCode(); // числовой код: 208

php composer.phar 

php composer.phar update