PHP sort() Function is used to sort the elements of the array in ascending order. An sort() function is built-in function in PHP.
Syntax :
sort(array $array , $sort_type = SORT_REGULAR);
Parameter,
$array : Required. It is input array.
$sort_type : Optional. $sort_type may be used to modify the sorting behavior using below values.
- SORT_REGULAR - Default. Compare items normally (don't change types).
- SORT_NUMERIC - Compare items numerically.
- SORT_STRING - Compare items as strings.
- SORT_LOCALE_STRING - Compare items as strings that based on current locale.
- SORT_NATURAL - Compare items as strings using natural ordering.
- SORT_FLAG_CASE - It can be combined with SORT_STRING or SORT_NATURAL to sort strings case-insensitively.
Return Values :
It returns true on success or false on failure.
Let's see below example to understand php sort() Function in details.
Comments