我正在一个侧项目,并在其核心的,我需要一个四方的JSON饲料到一个数组,我可以遍历。 我的代码如下,并导致以下错误:
Warning: Invalid argument supplied for foreach() in /homepages/7/d346835943/htdocs/dealrub/results.php on line 56
这里是JSON提要,我正在正确地获取的示例:
$jsonurl = "http://api.foursquare.com/v2/venues/search?ll=".$lat.",".$lon."&limit=100";
$json = file_get_contents($jsonurl,0,null,null);
$json_output = json_encode($json, true);
foreach ( $json_output->response->groups[0]->items as $items )
{
echo "{$items->name}\n";
}
任何帮助,我在做什么错将不胜感激。 我离开了jsonurl没有我的API密钥,但它成功地返回JSON结果。