1

如何显示数据-> 名称?

{
   "data": [
      {
         "name": "Aasdada",
         "category": "asdasd",
         "id": "2342342342",
         "created_time": "2012-11-28T03:56:00+0000"
      }
   ],
   "paging": {
      "next": "https://graph.facebook.com/&limit=5000&offset=5000&__after_id=12312"
   }
}

我试过了,但没有任何结果:

$user = json_decode(file_get_contents($graph_url), true);
echo("Hello " . $user->data->name);

//also tried this
echo("Hello " . $user[data]); //did not echo anything
echo("Hello " . $user->data[0]->name); //did not echo anything

$user->data[0]['name'] //still no luck

可能是什么问题呢?无论如何,我的代码适用于不在数组中的数据。

我只是想简单地说明用户是否喜欢页面。如果数据没有内容,则表示用户不喜欢该页面。如果它有数据,则表示用户喜欢该页面。

- 编辑 -

所以尝试了这个:

array(2) { ["data"]=> array(1) { [0]=> array(4) { ["name"]=> string(28) "Aasdda" ["category"]=> string(5) "asdad" ["id"]=> string(15) "3123123123" ["created_time"]=> string(24) "2012-11-28T03:56:00+0000" } } ["paging"]=> array(1) { ["next"]=> string(245) "https://graph.facebook.com/100023123123" } }
4

2 回答 2

2

尝试:

$user['data']['0']['name']
于 2012-11-28T04:03:47.453 回答
0

尝试:

 $user->data[0]['name']
于 2012-11-28T03:58:00.960 回答