我有一个带有产品的liitle商店,其中所有的价格都在比特币中也在Mysql数据库中的格式:
{{$product->buyout*0.00000001}} @else {{$product->price*0.00000001}}
现在我希望用Curl以美元实时汇率显示数据库中的比特币价格。
什么是最好的方法?
我已尝试使用此代码,任何其他工作创意?:
<?php
$url = "https://bitpay.com/api/rates";
$json = file_get_contents($url);
$data = json_decode($json, TRUE);
$rate = $data[1]["rate"];
$bitcoin_price = 0.008;
$usd_price = round( $bitcoin_price / $rate , 8 );
?>
<ul>
<li>Price: <?=$bitcoin_price ?> BTC / <?=$usd_price ?> USD
</ul>