当前位置: 首页 > 网络学院 > 服务端脚本教程 > PHP > arsort() 函数
The arsort() function sorts an array by the values in reverse order. The values keep their original keys.
arsort()函数将数组中的值从后往前(即:倒序)进行分类,并依次输出所有的值。每个值所对应的键保持不变。
This function returns TRUE on success, or FALSE on failure.
函数返回TRUE则表示成功,返回FALSE则表示失败。
arsort(array,sorttype) |
Parameter参数 | Description描述 |
---|---|
array | Required. Specifying an array 必要参数。指定一个数组 |
sorttype | Optional. Specifies how to sort the array values. Possible values: 可选参数。指定对数组值进行分类的方法。下面列举可以使用的参数:
|
<?php $my_array = array("a" => "Dog", "b" => "Cat", "c" => "Horse"); arsort($my_array); print_r($my_array); ?> |
The output of the code above will be:
上述代码将输出下面的结果:
Array ( [c] => Horse [a] => Dog [b] => Cat ) |