<?php
$test = ["def", "yz", "abc", "jkl", "123", "789", "stu"];
array_multisort($test, SORT_NUMERIC, $test);
var_export($test);
- Output for 7.4.0 - 7.4.33, 8.0.1 - 8.0.30, 8.1.0 - 8.1.33, 8.2.0 - 8.2.29, 8.3.0 - 8.3.26, 8.4.1 - 8.4.13
- array (
0 => 'abc',
1 => 'def',
2 => 'jkl',
3 => 'stu',
4 => 'yz',
5 => '123',
6 => '789',
)
preferences:
95.21 ms | 407 KiB | 5 Q