Home  >  Article  >  Backend Development  >  PHP array function sequence krsort - Sort the element keys of the array in descending order and maintain the index relationship

PHP array function sequence krsort - Sort the element keys of the array in descending order and maintain the index relationship

WBOY
WBOYOriginal
2016-07-29 08:47:051362browse

krsort() definition and usage
krsort() function sorts the array in reverse order by key, retaining the original keys for the array values.
The optional second parameter contains additional sorting flags.
If successful, return TRUE, otherwise return FALSE.
Syntax
krsort(array,sorttype) Parameter Description
array Required. Specifies the array to be sorted.
sorttype optional. Specifies how to arrange the values ​​of an array. Possible values:
SORT_REGULAR - Default. Processed with their original type (without changing type).
SORT_NUMERIC - Handle values ​​as numbers
SORT_STRING - Handle values ​​as strings
SORT_LOCALE_STRING - Handle values ​​as strings, based on local settings*.
*: This value is newly added in PHP 4.4.0 and 5.0.2. Prior to PHP 6, the system locale was used, which could be changed with setlocale(). Since PHP 6, the i18n_loc_set_default() function must be used.
Example

Copy code The code is as follows:


$my_array = array("a" => "Dog", "b" => "Cat", "c" = > "Horse");
krsort($my_array);
print_r($my_array);
?>


Output:
Array
(
[c] => Horse
[b] => Cat
[a] => Dog
)

The above introduces the krsort of PHP array function sequence-sorts the element key names of the array in descending order and maintains the index relationship, including aspects of the content. I hope it will be helpful to friends who are interested in PHP tutorials.

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn