对不起 - 这会有点措辞不好。
我的代码fbid
来自表格。我知道如何获取和显示由file_get_contents()
.
<?php echo $_POST["fbid"]; ?>
<?php $x=$_POST['fbid'];?>
<?php echo file_get_contents("http://graph.facebook.com/" . $x); ?>
请参阅下面的代码,这就是file_get_contents()
显示的内容:
{
"id": "4",
"name": "Mark Zuckerberg",
"first_name": "Mark",
"last_name": "Zuckerberg",
"link": "http:\/\/www.facebook.com\/zuck",
"username": "zuck",
"gender": "male",
"locale": "en_US"
}
如何回显字段name
并gender
从此字符串中回显?
Name: Their name
Gender: Their gender