0

我有这个代码

    $graph_url = "https://graph.facebook.com/100000070848126/statuses?access_token=".$params['access_token'];
    $status = json_decode(file_get_contents($graph_url),true);

    echo $status->data->message;

我在如何输出数组 $status 中的数据时遇到问题。我只是不知道如何调用此提要的项目

4

1 回答 1

0

的第二个参数json_decode()是是否创建关联数组。

json_decode ( string $json [, bool $assoc = false])

您指定您确实需要一个数组,因此您访问这些值的方式将是这样的 -

echo $status['data']['message'];

如果您省略了函数的true参数json_decode(),您将能够以更面向对象的方式访问这些值,就像您问题中的语法一样。

于 2013-01-05T23:57:14.180 回答