php数组排序函数

1.sort()以升序对数组进行排序

2.rsort()以降序对数组进行排序

3.ksort()根据关联数组进行升序排序

4.krsort()根据键对关联数组进行降序排序

5.asort()根据对关联数组进行升序排序

6.arsort()根据对关联数组进行降序排序

猜你喜欢

转载自blog.csdn.net/qq2942713658/article/details/81206773