public function getFollowers($page) { $h_user= User::identify(); $call= new TwitterOAuth(self::CONSUMER_KEY, self::CONSUMER_SECRET, $h_user->info->oAuth_token, $h_user->info->oAuth_secret); $peoples= $call->OAuthRequest('https://twitter.com/statuses/followers.xml?page=' . $page, array(), 'GET'); $xml = @simplexml_load_string($peoples); $aUsers = array(); foreach ($xml->user as $user) $aUsers[] = $this->userXMLToArray($user); return (array) $aUsers; }