导航

PHP数组函数

Posted on 2020-10-27 13:27  玻璃星  阅读(40)  评论(0编辑  收藏  举报

数组排序(6个)

  • sort() - 以升序对数组排序
  • rsort() - 以降序对数组排序    reversal sort)
  • asort() - 根据值,以升序对关联数组进行排序   (associative sort)
  • ksort() - 根据键,以升序对关联数组进行排序
  • arsort() - 根据值,以降序对关联数组进行排序
  • krsort() - 根据键,以降序对关联数组进行排序