How to reverse the order of an array in PHP
Topic: PHP / MySQLPrev|Next
Answer: Use the PHP array_reverse()
function
You can use the PHP array_reverse()
function to reverse the order of the array elements.
Example
Try this code »$colors = array("Red", "Green", "Blue");
// Printing the reversed array
print_r(array_reverse($colors));
Related FAQ
Here are some more FAQ related to this topic: