1. Go to this page and download the library: Download marvin255/cbrfservice 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/ */
marvin255 / cbrfservice example snippets
//инициируем новый объект сервиса
$cbrf = \Liquetsoft\CbrfService\CbrfFactory::createDaily();
//получаем курсы всех валют
$rates = $cbrf->getCursOnDate(new \DateTimeImmutable());
//получаем курс валюты по ее буквенному коду
$rateEur = $cbrf->getCursOnDateByCharCode(new \DateTimeImmutable(), 'EUR');
//получаем курс валюты по ее цифровому коду
$rate978 = $cbrf->getCursOnDateByNumericCode(new \DateTimeImmutable(), 978);
//получаем словарь всех доступных валют
$currencies = $cbrf->enumValutes();
//получаем описание валюты из словаря по буквенному коду
$enumEur = $cbrf->enumValuteByCharCode('EUR');
//получаем описание валюты из словаря по цифровому коду
$enum978 = $cbrf->enumValuteByNumericCode(978);
//получаем динамику курса для указанной валюты за последний месяц
$dynamic = $cbrf->getCursDynamic(
new \DateTimeImmutable('-1 month'),
new \DateTimeImmutable(),
$enumEur
);
//инициируем новый объект SoapClient
$client = new SoapClient(
\Liquetsoft\CbrfService\CbrfSoapService::DEFAULT_WSDL,
[
'proxy_host' => 'localhost',
'proxy_port' => 8080
]
);
//инициируем новый объект сервиса
$cbrf = \Liquetsoft\CbrfService\CbrfFactory::createDaily($client);
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.