doushi8599 2013-04-02 19:38
浏览 169
已采纳

使用PHP从JSON中提取特定值

I'm trying to pull the price from the following JSON but can't seem to figure out how to reference the actual values:

{"cards": [ { "high": "0.73", "volume": 1, "percent_change": "-2.67", "name": "Lightning Bolt", "url": "http://blacklotusproject.com/cards/Revised+Edition/Lightning+Bolt/", "price": "0.73", "set_code": "3ED", "average": "0.73", "change": "-0.02", "low": "0.73"}], "currency": "USD" }

So far I've got this code, which gets into the cards array but I'm unsure how to get farther - every attempt I've tried returns null.

$json = file_get_contents($url); $data = json_decode($json, TRUE);
echo var_dump($data[cards]);

Can someone shed light on what I need to do?

  • 写回答

3条回答 默认 最新

  • doubao6936 2013-04-02 19:41
    关注

    $data['cards'] has another array within it. You will need to access this array with index 0. For instance, $data['cards'][0]['high'] and so on.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?