http://php.net/manual/en/function.array-multisort.php
使用参考中的示例#1:
$a = array('Bob', 'Sue', 'Phil', 'Jenny');
$b = array(15, 12, 13, 13);
array_multisort($a, $b);
print_r($a);
> Array
(
[0] => Bob
[1] => Jenny
[2] => Phil
[3] => Sue
)
print_r($b);
> Array
(
[0] => 15
[1] => 13
[2] => 13
[3] => 12
)
Run Code Online (Sandbox Code Playgroud)
为什么不使用:
$arr = array('Bob'=>15,'Sue'=>12,'Phil'=>13,'Jenny'=>13);
Run Code Online (Sandbox Code Playgroud)
然后你可以顺利排序.