我正在尝试通过 API Facebook 使用框架 CodeIgniter 对 Facebook 的朋友进行分页。
// ID & APP SECRET CONNECTION
$this->load->library('facebook');
$fb_id = $this->facebook->getUser();
if($fb_id){
try{
//get the facebook friends list
$user_friends = $this->ci->facebook->api('/'.$fb_id.'/friends');
}catch(FacebookApiException $e){
error_log($e);
$user_friends = NULL;
}
}
if (!is_null($user_friends)) {
// pagination - how can i do that?
$data['list_friends'] = $user_friends;
$this->load->view('list_friends',$data);
} else {
echo "error";
}
看法
<?php
foreach ($list_friends['data'] as $friend) {
echo $friend['name'];
}
?>
我该如何进行分页或为此我必须使用哪种逻辑?