public function actionIndex(){
$student = Student::model()->findAll();
usort($student,'sortByCreateTime');
}
public function sortByCreateTime($a,$b){
return $a->create_time>$b->create_time?1:-1;
}
这样写报找不到该方法的错误?有人知道怎么用吗?
usort($student, array($this, 'sortByCreateTime'));
试试
没用过这函数,看了一下手册,不知道是不是第一个参数要传引用。\usort($student,'sortByCreateTime');
函数名称前把你的命名空间带上