krsort

bool krsort(array array, [int flag]) 
array Array to be sorted
flag Flag specifying how to compare key values (PHP 4.0.0+ only)

Sorts an array in descending order by key.

Returns:

TRUE on success; NULL on failure

Description:

This function sorts array in descending order by key. array is directly modified. (PHP 4.0.0+ only) The way in which element values are compared can be modified by passing one of the following named constants as flag :

SORT_REGULAR Compare element keys according to PHP’s normal comparison rules. This is the default if flag is not given.
SORT_NUMERIC Compare element keys according to their numeric values.
SORT_STRING Compare element keys according to their string values.

Version:

PHP 3 since 3.0.13, PHP 4 since ...

Get PHP Functions Essential Reference now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.