Tuitter_Tweets::reverse

Makes the Tweets which this object contains in reverse order.

reverse()

Examples

$tweets = $tuitter->getHomeTL();

// The order from newest to oldest
foreach($tweets as $tweet){
	echo $tweet->created_at."\n";
}

// The order from oldest to newest
$tweets->reverse();
foreach($tweets as $tweet){
	echo $tweet->created_at."\n";
}