好的,所以我正在使用 coinbase 的 API 来获取 BTC 的当前价格,但是当我尝试使用 json_decode() 它返回一个错误,这让我相信他们的响应不是 JSON。
https://coinbase.com/api/v1/prices/spot_rate?currency=USD
返回:
{"amount":"90.00","currency":"USD"}
我试过 json_decode($grabPrice); $grabPrice 等于该 API 的 file_get_contets()。它给我的错误是:
Catchable fatal error: Object of class stdClass could not be converted to string in
如何获取 PHP 变量中的金额?
谢谢。