php数组排序(1)

来源:互联网 发布:windows资源管理器解锁 编辑:程序博客网 时间:2024/05/29 12:05

  • PHP - 数组排序函数

  • sort() - 对数组进行升序排列
  • rsort() - 对数组进行降序排列
  • asort() - 根据关联数组的值,对数组进行升序排列
  • ksort() - 根据关联数组的键,对数组进行升序排列
  • arsort() - 根据关联数组的值,对数组进行降序排列
  • krsort() - 根据关联数组的键,对数组进行降序排列
http://www.runoob.com/php/php-arrays-sort.html

原创粉丝点击