How can I sort a multi-dimensional array?
Here is an example of this function in action:
<?php
$multiarray = array(array(5,4,3,2,1),array(7,8,2,9,10));
array_multisort($multiarray[0],SORT_ASC);
print_r($multiarray);
?>
Comment on this Question and Answer >>>
ASK A QUESTION
More arrays PHP Questions
How can I reset an array in PHP?i have a site named profile.php where i want to replace the following: http://www.youtube.com/watch?v=yoXE031j8d0 into: i know i could use str_replace to replace into ... but i need to know the URL so i can check if it rea
How do I pick a random value from an array?
I want to invert my array, can I do this?
How do I remove the first element from an array?
