我尝试将数据导出到变量。我有这种形式的数据:
{
"data":[{
"unread": 1,
"id":"1111",
"updated_time":"2015-01-21T00:00:38+0000",
"comments":{
"data":[{
"id":"1111_2222",
"from":
{
"id":"9999",
"name":"John"
},
"message":"Hello Steve, how are you?",
"created_time":"2015-01-21T00:00:38+0000"
}]
}
}]
}
我有以下代码,但它只导出未读,id和updated_time。但是我甚至需要来自评论的数据(消息,id,名称 - 来自)。
foreach ($fb_response->data as $item) {
echo 'unread: ' . $item->unread . '<br />';
echo 'From ID: ' . $item->id . '<br />';
echo 'Time: ' . $item->updated_time;
}
答案 0 :(得分:1)
又是一个循环吗?
reload modified system module
希望这有帮助。
答案 1 :(得分:0)
您的上次回音未正确终止。试试这个:
foreach($fb_response->data as $item){
echo 'unread: ' . $item->unread . '<br />';
echo 'From ID: ' . $item->id . '<br />';
echo 'Time: ' . $item->updated_time ;
}