Makes the users which this object contains in reverse order.
reverse()
$users = $tuitter->getFollowers();// The order from newset to oldest foreach($users as $user){ echo $tweet->screen_name."\n"; }// The order from oldest to newest $users->reverse(); foreach($users as $user){ echo $user->screen_name."\n"; }