PHPSorting Arrays
The elements in an array can be sorted in alphabetical or numerical order, descending or ascending.
PHP - Sort Functions For Arrays
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 key
Sort Array in Ascending Order - sort()
Thesort() function sort arrays in ascending order.
Example
Sort the elements of the$cars array in ascending alphabetical order:
$cars = array("Volvo", "BMW", "Toyota");sort($cars);Try it Yourself »Example
Sort the elements of the$numbers array in ascending numerical order:
$numbers = array(4, 6, 2, 22, 11);sort($numbers);Try it Yourself »Sort Array in Descending Order - rsort()
Thersort() function sort arrays in descending order.
Example
Sort the elements of the$cars array in descending alphabetical order:
$cars = array("Volvo", "BMW", "Toyota");rsort($cars);Try it Yourself »Example
Sort the elements of the$numbers array in descending numerical order:
$numbers = array(4, 6, 2, 22, 11);rsort($numbers);Try it Yourself »Sort Array - asort()
Theasort() function sort associative arrays in ascending order, according to the value.
Example
Sort an associative array in ascending order, according to the value:
$age = array("Peter"=>"35", "Ben"=>"37", "Joe"=>"43");asort($age);Try it Yourself »Sort Array - ksort()
Theksort() function sort associative arrays in ascending order, according to the key.
Example
Sort an associative array in ascending order, according to the key:
$age = array("Peter"=>"35", "Ben"=>"37", "Joe"=>"43");ksort($age);Try it Yourself »Sort Array - arsort()
Thearsort() function sort associative arrays in descending order, according to the value.
Example
Sort an associative array in descending order, according to the value:
$age = array("Peter"=>"35", "Ben"=>"37", "Joe"=>"43");arsort($age);Try it Yourself »Sort Array - krsort()
Thekrsort() function sort associative arrays in descending order, according to the key.
Example
Sort an associative array in descending order, according to the key:
$age = array("Peter"=>"35", "Ben"=>"37", "Joe"=>"43");krsort($age);Try it Yourself »Complete PHP Array Reference
For a complete reference of all array functions, go to our completePHP Array Reference.
The reference contains a brief description, and examples of use, for each function!

