- var_dump: documentation ( source)
- array_multisort: documentation ( source)
<?php
$arr = [
[
123,
321,
231,
],
[
"abc",
"bca",
"cab",
],
[
0.9999,
43.786,
false,
],
];
array_multisort($arr[0], SORT_DESC, SORT_NUMERIC,
$arr[1], SORT_STRING,
$arr[2], SORT_ASC, SORT_NATURAL
);
var_dump($arr);