How do I reverse sort an array by key?
You guessed it... krsort - getting good at this PHP lark now!
Here's the obligatory quick example:
<?php
$myworld = array("a"=>"PHP","b"=>"learning","c"=>"I'm");
krsort($myworld);
print_r($myworld);
?>
Which confirms your suspicions:
Array
(
[c] => I'm
[b] => learning
[a] => PHP
)
Comment on this Question and Answer >>>
ASK A QUESTION
More arrays PHP Questions
How do I turn an array into a string?How do I write my own sort function?
How do I find if a value is already in an array or not?
what is the return value of array_unique()?
How do I check if a variable is of array type?
