0

我有来自示例 sdk facebook 的这个简单代码:

if ($user) {
try {
$user_profile = $facebook->api('/me/friends');
} catch (FacebookApiException $e) {
error_log($e);
$user = null;
}
}

如果我打印 $user_profile 结果是这种格式的朋友列表:

[206] => Array
            (
                [name] => name
                [id] => 00000000
            )

是否可以访问这些数组的字段?例如我只想打印朋友的名字

4

1 回答 1

0

要仅打印朋友的姓名,只需遍历主数组/对象:

foreach($user_profile as $k => $friend)
{
    echo $friend['name'].' - '.$user_profile[$key]['id'].'<br/>';
}

要访问特定的朋友:

echo $user_profile[11]['name'];

这与数组中第 11 个朋友的名字相呼应。将两者结合起来使用函数(或方法)获取给定朋友的索引:

public function getFriendIndex($name)
{
    foreach($this->user_profile as $index => $friend)
    {
        if ($friend['name'] === $name)
        {//returns the index of $name's friend data
            return $index;
        }
    }
    return null;//friend doesn't exist...
}
于 2013-05-03T10:49:34.607 回答