PHP Questions Home | Register | Login
Categories
Arrays
Files
Forms
Creating PDFs
PHP Errors
Functions
Images
MySQL
Numbers
Others
Strings
Website
Unanswered

PHP Forums
Forums Index
MySQL Forum
PHP Forum
Flash/Actionscript
Javascript
Web design

More PHP
PHP Functions
Top Questions
Ask a Question
PHP Interview Questions
PHP Jobs
Ecommerce
IT Questions
Business Websites

Sponsors

sponsor ad
My Salary
PHP Developer Salary
Advertise Here

How do I reverse sort an array by key?


Use the 'k' for 'key', the 'r' for reverse and 'sort' for well 'sort' and what do you get it?

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 can I reset an array in PHP?

how sorting an array with keys?

How can I loop through the members of an array?

reverse an array

how a values entered in an array from keyboard?



Custom Search