来自此字符串
{"ticker":{"high":1.747,"low":1.6,"vol":13755,"buy":1.608,"sell":1.68,"last":1.61}}
我需要获取“最后”数据(目前为1.61)我知道答案很简单,但我不确定它是什么。
答案 0 :(得分:5)
$values = json_decode($string, true);
echo $values['ticker']['last'];
请参阅http://en.wikipedia.org/wiki/Json,http://php.net/json_decode。