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

krsort

Description

The krsort of Array for PHP sort an array by key in descending order.

Syntax

krsort(
    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"
];

krsort($array);

print_r($array);

?>
Array
(
    [d] => Lemon
    [a] => orange
    [C] => apple
    [B] => Banana
)

2 · flags · SORT_REGULAR

<?

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

krsort($array, $flags);

print_r($array);

?>
Array
(
    [d] => Lemon
    [a] => orange
    [C] => apple
    [B] => Banana
)

3 · flags · SORT_NUMERIC

<?

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

krsort($array, $flags);

print_r($array);

?>
Array
(
    [d] => Lemon
    [a] => orange
    [B] => Banana
    [C] => apple
)

4 · flags · SORT_STRING

<?

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

krsort($array, $flags);

print_r($array);

?>
Array
(
    [d] => Lemon
    [a] => orange
    [C] => apple
    [B] => Banana
)

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;

krsort($array, $flags);

print_r($array);

?>
Array
(
    [d] => Lemon
    [C] => apple
    [B] => Banana
    [a] => orange
)

6 · flags · SORT_NATURAL

<?

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

krsort($array, $flags);

print_r($array);

?>
Array
(
    [d] => Lemon
    [a] => orange
    [C] => apple
    [B] => Banana
)

7 · flags · SORT_FLAG_CASE · SORT_STRING

<?

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

krsort($array, $flags);

print_r($array);

?>
Array
(
    [d] => Lemon
    [C] => apple
    [B] => Banana
    [a] => orange
)

8 · flags · SORT_FLAG_CASE · SORT_NATURAL

<?

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

krsort($array, $flags);

print_r($array);

?>
Array
(
    [d] => Lemon
    [C] => apple
    [B] => Banana
    [a] => orange
)