2

我想在 HTML 文档上显示“当前比特币价格”。我找到了https://mtgox.com/api/0/data/ticker.php,它返回:

{"ticker":{"high":12.43,"low":11.7,"avg":12.10615987,"vwap":12.098317306,"vol":58453,"last_all":12.34351,"last_local":12.34351,"last":12.34351,"buy":12.3341,"sell":12.34351}}

如何将 PHP 变量设置为last_all(12.34351) 的值?

4

1 回答 1

3

这是一个 JSON 文档。通过使用json_decode,您可以将其转换为 PHP 对象或 PHP 数组(如果您将可选的第二个参数设置为 true),如此处文档中所述

$content = json_decode($string, true);
echo $content["last_all"];
于 2012-11-23T02:54:49.320 回答