tomwright / currency-php-yahoo-rate-fetcher
该软件包最新版本(1.0.0)没有提供许可信息。
用于从Yahoo API获取汇率扩展。
1.0.0
2017-04-13 14:52 UTC
Requires
- phpunit/phpunit: *
- tomwright/currency-php: ^0.0.3
This package is auto-updated.
Last update: 2024-09-15 07:00:35 UTC
README
安装
安装 CurrencyPHP。
composer require tomwright/currency-php
composer require tomwright/currency-php-yahoo-rate-fetcher
使用方法
YahooRateFetcher仅仅是CurrencyPHP的一个RateFetcher。
$rateFetcher = new YahooRateFetcher(); $gbp = new Currency('GBP', $rateFetcher); $usd = new Currency('USD', $rateFetcher); $priceInGBP = 100; $priceInUSD = $gbp->convertTo($usd, $priceInGBP); echo $priceInUSD; // 126