博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

php数组排序

Posted on 2016-11-11 05:33  简单是书  阅读(65)  评论(0编辑  收藏  举报

1、sort() 对数组升序排列。
2、rsort() 对数组进行降序排列。
3、asort() 根据关联数组的值,对数组进行升序排列。
4、ksort() 根据关联数组的键,对数组进行升序排列。
5、arsort() 根据关联数组的值 ,对数组进行降序排列。
6、krsort() 根据关联数组的键,对数组进行降序排列。