0

我在遍历数组方面很糟糕,可以使用一些帮助。

我正在使用 YQL API(雅虎)

这是我要迭代的json:

http://query.yahooapis.com/v1/public/yql?q=select%20 *%20from%20yahoo.finance.historicaldata%20where%20symbol%20%3D%20%22AAPL%22%20and%20startDate%20 %3D%20%222012-09-20%22%20and%20endDate%20%3D%20%222012-09-20%22&format=json&diagnostics=true&env=store%3A%2F%2Fdatatables.org%2Falltableswithkeys

试图获得“关闭”值。

试过这个但没有用:$json->query->results->Close

在此先感谢,菲尔

4

2 回答 2

0

将其提取到数据中,

    data['query']['results']['quote']['Close']
于 2012-09-23T23:06:29.250 回答
0

print_r($json->query->results->quote->Close) 做到了。这是一个愚蠢的问题——很抱歉浪费了大家的时间。

于 2012-09-23T23:10:04.967 回答