PHP array ascending descending function


Array sort function :::
Sort () array in ascending order
rsort () array in descending order

asort () according to the value of the associated array, the array is in ascending order
ksort () The key of the associative array, the array is in ascending order

arsort () according to the value of the associated array, the array in descending order
krsort () The key of the associative array, the array in descending order

Guess you like

Origin www.cnblogs.com/web928943/p/12457393.html