如何回显JSON输出

时间:2014-10-23 00:22:45

标签: php json

以下是我登录Facebook后获得的JSON代码。如何从这个JSON中提取数据?我尝试了以下的,但没有工作。

$user = json_decode(file_get_contents($graph_url));

stdClass Object ( [id] => 725426940865193 [email] => stargijo2@gmail.com [first_name] => Gijo [gender] => male [last_name] => Varghese [link] => https://www.facebook.com/app_scoped_user_id/725426940865193/ [locale] => en_GB [name] => Gijo Varghese [timezone] => 5.5 [updated_time] => 2014-09-27T13:47:05+0000 [verified] => 1 ) 

echo $user['email']; //not working

1 个答案:

答案 0 :(得分:4)

它是对象,而不是数组。您需要使用对象语法:

echo $user->email;

如果您想以阵列形式访问它,则必须将true作为第二个参数传递给json_decode()

$user = json_decode(file_get_contents($graph_url), true);
echo $user['email'];