当前位置: 首页 > 网络学院 > 服务端脚本教程 > PHP > krsort() 函数
The krsort() function sorts an array by the keys in reverse order. The values keep their original keys.
krsort()函数的作用是:对数组按照键名逆向排序,元素的键名保持不变。
This function returns TRUE on success, or FALSE on failure.
如果成功,函数将返回True;失败则返回False。
krsort(array,sorttype) |
Parameter参数 | Description描述 |
---|---|
array | Required. Specifies the array to sort 必要参数。指定需要执行操作的数组对象 |
sorttype | Optional. Specifies how to sort the array values. Possible values: 可选参数。指定数组值的排序方式,下面列出了可以使用的参数:
|
<?php $my_array = array("a" => "Dog", "b" => "Cat", "c" => "Horse"); krsort($my_array); print_r($my_array); ?> |
The output of the code above will be:
上述代码将输出下面的结果:
Array ( [c] => Horse [b] => Cat [a] => Dog ) |