The elements in an array can be sorted in alphabetical or numerical order, descending or ascending.
In this chapter, we will go through the following PHP array sort functions:
sort()
- sort arrays in ascending orderrsort()
- sort arrays in descending orderasort()
- sort associative arrays in ascending order, according to the valueksort()
- sort associative arrays in ascending order, according to the keyarsort()
- sort associative arrays in descending order, according to the valuekrsort()
- sort associative arrays in descending order, according to the keyThe following example sorts the elements of the $cars array in ascending alphabetical order:
The following example sorts the elements of the $numbers array in ascending numerical order:
The following example sorts the elements of the $cars array in descending alphabetical order:
The following example sorts the elements of the $numbers array in descending numerical order:
The following example sorts an associative array in ascending order, according to the value:
<?php
$age = array("Peter"=>"35", "Ben"=>"37", "Joe"=>"43");
asort($age);
?>
Try it Yourself »
The following example sorts an associative array in ascending order, according to the key:
<?php
$age = array("Peter"=>"35", "Ben"=>"37", "Joe"=>"43");
ksort($age);
?>
Try it Yourself »
The following example sorts an associative array in descending order, according to the value:
<?php
$age = array("Peter"=>"35", "Ben"=>"37", "Joe"=>"43");
arsort($age);
?>
Try it Yourself »
The following example sorts an associative array in descending order, according to the key:
<?php
$age = array("Peter"=>"35", "Ben"=>"37", "Joe"=>"43");
krsort($age);
?>
Try it Yourself »
For a complete reference of all array functions, go to our complete PHP Array Reference.
The reference contains a brief description, and examples of use, for each function!
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!