PHP数组排序函数 sort() 对数组进行升序排列rsort() 对数组进行降序排序asort() 根据关联数组的值,对数组进行升序排列ksort() 根据关联数组的键,对数组进行升序排列arsort() 根据关联数组的值,对数组进行降序排列krsort() 根据关联数组的键,对数组进行降序排列