如何在php中获取json返回值?

时间:2011-01-31 17:36:34

标签: php json facebook

我的facebook应用程序中有一个脚本,它将在下拉列表中为用户提供他的Facebook好友列表。使用下面的代码,我可以抓住用户的朋友,但我只获取用户ID。

$api_key = 'xxx';
$secret  = 'xxx';
include_once 'facebook.php';
$facebook = new Facebook($api_key, $secret);

$friends = $facebook->api_client->friends_get();
foreach ($friends as $friend)
{ 
  echo $friend;// returns only the friend's ID and not name but i want to show the name
  $url="https://graph.facebook.com/".$friend."/";
  $res=file_get_contents($url);
}

使用this link我想获取用户名并将其显示在下拉列表中。我如何抓住它并仅回显$url的名称?

{
   "id": "4",
   "name": "Mark Zuckerberg",
   "first_name": "Mark",
   "last_name": "Zuckerberg",
   "link": "http://www.facebook.com/zuck",
   "gender": "male",
   "locale": "en_US"
}

3 个答案:

答案 0 :(得分:3)

答案 1 :(得分:2)

$data = json_decode($str);
echo $data['name'];

简单就是那个

答案 2 :(得分:2)

From the PHP manual

$var = json_decode ( $result );

并回复您想要的内容,例如:echo $var ['link'];