imitronov/cbrf-currency-rate
最新稳定版本:1.0.2
Composer 安装命令:
composer require imitronov/cbrf-currency-rate
包简介
README 文档
README
Данная библиотека забирает данные о курсе валют от Центрального Банка РФ.
Доки ЦБ РФ по используемой XML: https://cbr.ru/development/SXML/
Установка
composer require imitronov/cbrf-currency-rate
Использование
<?php // ... use Imitronov\CbrfCurrencyRate\Client; $cbrf = new Client(); $currencyRates = $cbrf->getCurrencyRates(); /** * Перебор всех доступных валют */ foreach ($currencyRates as $currencyRate) { echo sprintf( '1 %s = %s RUB' . PHP_EOL, $currencyRate->getCharCode(), $currencyRate->getRate() ); } /** * Получение курса по нужной валюте */ $usdCurrencyRate = $cbrf->getCurrencyRateByCharCode('USD'); echo sprintf( '1 %s = %s RUB', $usdCurrencyRate->getCharCode(), $usdCurrencyRate->getRate(), );
统计信息
- 总下载量: 78
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Unknown
- 更新时间: 2023-02-14