我已经通过Facebook建立了登录系统,登录后,我正在尝试获取一些朋友。 为此,我使用了
$friends = $facebook->api('/me/friends');
echo '<pre>';
print_r($friends);
echo '</pre>';
当我使用它时,我在数组中获取值,但我很明显从数组中获取值
Array
(
[data] => Array
(
)
[summary] => Array
(
[total_count] => 1
)
)
我希望在[total_count]
$totalfriends
的值
如果有人能帮助我,我将不胜感激
答案 0 :(得分:3)
要获得总计数,请尝试
$totalfriends = $friends['summary']['total_count'];
答案 1 :(得分:1)
这就像是:
$friends['summary']['total_count']
答案 2 :(得分:0)
$friends = $friends['summary']['total_count'];