Problem Statement
Which PHP function sorts an array in ascending order by values?
Explanation
The sort function arranges array elements in ascending order by value while reindexing the array numerically.
Code Solution
SolutionRead Only
sort($arr);
Practice Sets
This question appears in the following practice sets:
