我这里有一个使用Facebook API的PHP页面。
我要做的是(在用户设置权限之后),通过以下方式获取用户的朋友用户ID:$facebook->api('/me/friends')
。问题是,我只想得到随机的10个朋友。我可以使用/me/friends?limit=10
轻松地将结果限制为10,但是再次不会是随机的。
所以这就是我现在所拥有的:
$friendsLists = $facebook->api('/me/friends');
function getFriends($friendsLists){
foreach ($friendsLists as $friends) {
foreach ($friends as $friend) {
// do something with the friend, but you only have id and name
$id = $friend['id'];
$name = $friend['name'];
shuffle($id);
return "@[".$id.":0],";
}
}
}
$friendsies = getFriends($friendsLists);
$message = 'I found this Cover at <3 '.$Link.'
'.$friendsies.' check it out! :)';
我已经尝试了shuffle()和第一个选项:https://stackoverflow.com/a/1656983/1399030,但我认为我可能做错了,因为它们没有返回任何内容。我很确定我很亲密,但到目前为止我所尝试的并不奏效。可以吗?
答案 0 :(得分:1)
你要在foreach之前使用shuffle,这样你实际上是在洗牌。
之后,您将要限制为10个朋友。我建议添加$ i var来计算到10,并添加到新数组。
这样的事情:
function getFriends($friendsLists){
$formatted_friends = array();
$i = 0;
foreach ($friendsLists as $friends) {
// I'm guessing we'll need to shuffle here, but might also be before the previous foreach
shuffle($friends);
foreach ($friends as $friend) {
// do something with the friend, but you only have id and name
// add friend as one of the ten
$formatted_friends[$i] = $friend;
// keep track of the count
$i++;
// once we hit 10 friends, return the result in an array
if ($i == 10){ return $formatted_friends; }
}
}
}
请记住,它会返回一个数组,而不是一个可以在echo中使用的字符串。如果需要,可以将其放在echo中以进行调试:
echo 'friends: '.print_r($friendsies, true);