php开发之数组排序

WBOY
Release: 2016-06-23 13:30:32
Original
768 people have browsed it

数组相对于其他变量类型的优点之一是,能够对它们进行排序。PHP包括多个用于对于数组排序的函数,它们的语法都很简单:

$names=array("Moe","Larry","Curly");sort($names);
Copy after login

这些排序函数执行3种排序。首先,可以使用sort()函数按值对数组排序,并丢弃原来的键。重要的是理解排序过程之后将会重置数组的键,因此如果键-值这一关系很重要,就不应该使用该函数。
其次,可以使用asort()函数按值对数组排序,同时还会维持键。最后,可以使用ksort()函数按键对数组排序。如果把这些函数分别改为rsort(),arsort()和krsort(),则能够以相反的顺序对数组排序。

版权声明:本文为博主原创文章,未经博主允许不得转载。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template