HomeMenu
Jesus · Bible · HTML · CSS · JS · PHP · SVG · Applications

sort

Description

The sort of Array for PHP sort an array in ascending order.

Syntax

sort(
    array &$array,
    int $flags = SORT_REGULAR
): true

Parameters

array

The input array.

flags

Modify the sorting behavior.

ConstantDescription
SORT_REGULARcompare items normally
SORT_NUMERICcompare items numerically
SORT_STRINGcompare items as strings
SORT_LOCALE_STRINGcompare items as strings, based on the current locale. It uses the locale, which can be changed using setlocale()
SORT_NATURALcompare items as strings using "natural ordering" like natsort()
SORT_FLAG_CASEcan be combined (bitwise OR) with SORT_STRING or SORT_NATURAL to sort strings case-insensitively

Return

Returns true.

Examples

1 · array

<?

$array =
[
    "d" => "Lemon",
    "a" => "orange",
    "B" => "Banana",
    "C" => "apple"
];

sort($array);

print_r($array);

?>
Array
(
    [0] => Banana
    [1] => Lemon
    [2] => apple
    [3] => orange
)

2 · flags · SORT_REGULAR

<?

$array =
[
    "d" => "Lemon",
    "a" => "orange",
    "B" => "Banana",
    "C" => "apple"
];
$flags = SORT_REGULAR;

sort($array, $flags);

print_r($array);

?>
Array
(
    [0] => Banana
    [1] => Lemon
    [2] => apple
    [3] => orange
)

3 · flags · SORT_NUMERIC

<?

$array =
[
    "d" => "Lemon",
    "a" => "orange",
    "B" => "Banana",
    "C" => "apple"
];
$flags = SORT_NUMERIC;

sort($array, $flags);

print_r($array);

?>
Array
(
    [0] => Lemon
    [1] => orange
    [2] => Banana
    [3] => apple
)

4 · flags · SORT_STRING

<?

$array =
[
    "d" => "Lemon",
    "a" => "orange",
    "B" => "Banana",
    "C" => "apple"
];
$flags = SORT_STRING;

sort($array, $flags);

print_r($array);

?>
Array
(
    [0] => Banana
    [1] => Lemon
    [2] => apple
    [3] => orange
)

5 · flags · SORT_LOCALE_STRING

<?

$category = LC_ALL;
$locale = "en_US";

setlocale($category, $locale);

$array =
[
    "d" => "Lemon",
    "a" => "orange",
    "B" => "Banana",
    "C" => "apple"
];
$flags = SORT_LOCALE_STRING;

sort($array, $flags);

print_r($array);

?>
Array
(
    [0] => apple
    [1] => Banana
    [2] => Lemon
    [3] => orange
)

6 · flags · SORT_NATURAL

<?

$array =
[
    "d" => "Lemon",
    "a" => "orange",
    "B" => "Banana",
    "C" => "apple"
];
$flags = SORT_NATURAL;

sort($array, $flags);

print_r($array);

?>
Array
(
    [0] => Banana
    [1] => Lemon
    [2] => apple
    [3] => orange
)

7 · flags · SORT_FLAG_CASE · SORT_STRING

<?

$array =
[
    "d" => "Lemon",
    "a" => "orange",
    "B" => "Banana",
    "C" => "apple"
];
$flags = SORT_FLAG_CASE | SORT_STRING;

sort($array, $flags);

print_r($array);

?>
Array
(
    [0] => apple
    [1] => Banana
    [2] => Lemon
    [3] => orange
)

8 · flags · SORT_FLAG_CASE · SORT_NATURAL

<?

$array =
[
    "d" => "Lemon",
    "a" => "orange",
    "B" => "Banana",
    "C" => "apple"
];
$flags = SORT_FLAG_CASE | SORT_NATURAL;

sort($array, $flags);

print_r($array);

?>
Array
(
    [0] => apple
    [1] => Banana
    [2] => Lemon
    [3] => orange
)