我有一个 url http://btcrate.com/convert?from=btc&to=usd&exch=mtgox&conv=xe&amount=0.01
,它输出{"converted": "1.300000300"}
. 我想得到转换成 PHP 值的值,所以$usd = 1.300000300;
.
我尝试了以下方法,但它只输出整个字符串,尽管我只想要转换后的值。
file_get_contents("http://btcrate.com/convert?from=btc&to=usd&exch=mtgox&conv=xe&amount=0.01");