使用 Foursquare API 它返回给我以下 JSON 提要
https://foursquare.com/img/points/discovery-venue3.png","message":"你的朋友第一个签到...我想做的是显示消息“OK!我们”有你@Place XXX。你来过这里两次。” 它嵌入在第二个“类型”标签中
我习惯于使用 foreach 函数获得这种值,但使用这个我无法获得它。我需要专家的帮助,感谢您的参与。
我尝试使用的代码没有成功:
$data = json_decode($response, true); // return array not object
foreach($data['notifications']['type'][0] as $item) {
echo $item['item']['message'];
}