在PHP中,uasort()函数用于对数组按照用户自定义的比较函数进行排序,该函数可以处理多维数组。具体步骤如下:
function customSort($a, $b) {
if ($a['score'] == $b['score']) {
return 0;
}
return ($a['score'] < $b['score']) ? -1 : 1;
}
$students = array(
array('name' => 'John', 'score' => 85),
array('name' => 'Alice', 'score' => 90),
array('name' => 'Bob', 'score' => 75)
);
uasort($students, 'customSort');
通过以上步骤,可以实现对多维数组的排序操作。