我有从朋友列表返回的结果,但是我希望只返回名字而不是全名。
这可能吗。
另外,如何在显示时使个人资料图像更大?
我曾尝试使用“first_name”,但作为未定义索引返回。
这是我的代码:
if ($user) {
$user_profile = $facebook->api('/me');
$friends = $facebook->api('/me/friends');
echo '<table>';
foreach ($friends["data"] as $value) {
echo '<td>';
echo '<div class="pic">';
echo '<img src="https://graph.facebook.com/' . $value["id"] . '/picture"/>';
echo '</div>';
echo '<font color="white">','<div class="picName">'.$value["first_name"].'</div>','</font>';
echo '</td>';
}
echo '</table>';
}