SORT_NUMERIC
-
Please use sort numeric in this plugin.
$data = ["1", "11", "2", "20", "3"];
sort($data, SORT_NUMERIC);
print_r($data);So the result will be like this:
Array
(
[0] => 1
[1] => 2
[2] => 3
[3] => 11
[4] => 20
)Not like this:
Array
(
[0] => 1
[1] => 11
[2] => 2
[3] => 20
[4] => 3
)The page I need help with: [log in to see the link]
You must be logged in to reply to this topic.