👋 Hello! I'm Alphonsio the robot. Ask me a question, I'll try to answer.
sort php array
There are many ways to sort PHP arrays:
Sort by values:
Sort by keys:
Sort by user-defined function:
-
uasort()
: sort by values ⬈ -
uksort()
: sort by keys ⬈ -
usort()
: sort by values (do not maintain key association) ⬈
Multidimensional arrays:
-
array_multisort()
⬈
Full reference here : https://www.php.net/manual/en/array.sorting.php