php 二维数组的排序问题

高分请说下,php 二维数组的排序问题?

我想用一个二维数组存放学生的信息(包括id,name,phone),要求根据id和姓名对学生进行排序,请问怎样写?我尝试用usort函数,但搞不出来。
请问一下下面的排序为什么不行:
$arr[]=array(123,"xn",45654);
$arr[]=array(111,"fe",45154);
$arr[]=array(121,"gr",45315);
usort($arr,sort_fun);
function sort_fun($stu1, $stu2) {
if ($stu1[0] == $stu2[0])
{
return 0;
}
else if ($stu1 [0] >= $stu2 [0])
return 1;
else
return - 1;
}

还有按二楼的方法排也不行:
function sort_student($arr) {
// usort($arr,sort_fun);
foreach($arr as $stud_item){
$stud_id[]=$stud_item[0];
$stud_name[]=$stud_item[1];
$stud_phone[]=$stud_item[2];
}
array_multisort($arr,SORT_DESC,$stud_id,SORT_DESC,$stud_name,SORT_DESC,$stud_phone);
}
我终于知道什么原因了,function sort_student($arr)应该写成function sort_student(&$arr),php的数组竟然也是值传递的。。。。
最新回答
傲娇到底

2024-12-02 02:32:34

对二维数组排序,得用到array_multisort()
下面是从php手册摘出来的例子.具体请根据你的问题查阅手册.
=========
数据全都存放在名为 data 的数组中。这通常是通过循环从数据库取得的结果,例如 mysql_fetch_assoc()。

<?php
$data[] = array('volume' => 67, 'edition' => 2);
$data[] = array('volume' => 86, 'edition' => 1);
$data[] = array('volume' => 85, 'edition' => 6);
$data[] = array('volume' => 98, 'edition' => 2);
$data[] = array('volume' => 86, 'edition' => 6);
$data[] = array('volume' => 67, 'edition' => 7);
?>

本例中将把 volume 降序排列,把 edition 升序排列。

现在有了包含有行的数组,但是 array_multisort() 需要一个包含列的数组,因此用以下代码来取得列,然后排序。

<?php
// 取得列的列表
foreach ($data as $key => $row) {
$volume[$key] = $row['volume'];
$edition[$key] = $row['edition'];
}

// 将数据根据 volume 降序排列,根据 edition 升序排列
// 把 $data 作为最后一个参数,以通用键排序
array_multisort($volume, SORT_DESC, $edition, SORT_ASC, $data);
?>

数据集合现在排好序了,结果如下:

volume | edition
-------+--------
98 | 2
86 | 1
86 | 6
85 | 6
67 | 2
67 | 7
琉璃水色

2024-12-02 02:22:05

用id作为key来排序咯