Home >类库下载 >PHP类库 >PHP array sort

PHP array sort

高洛峰
高洛峰Original
2016-10-21 11:13:151379browse

The following only introduces common array sorting methods, please refer to the help manual for detailed instructions


Sort the array by key name: ksort($array)

Sort the array by key name in reverse: krsort($array)

Sort the array Sort and maintain the index relationship: asort($array)

Reverse sort the array and maintain the index relationship: arsort($array)

Reverse sort the array: rsort

Sort the array: sort

Statement:
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

Related articles

See more