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 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?



Custom Search