Is the collection already uploaded? The class supports setOrder, so if you know how it is ordered and not yet loaded, you can simply call setOrder in the same field using Varien_Data_Collection::SORT_ORDER_DESCor Varien_Data_Collection::SORT_ORDER_ASC. Alternatively, if you only need objects and nothing special for a collection that you could use.
$reversedCollection = array_reverse($collection->toArray());
source
share