谁一开始就是大神?

怎么在框架中使用usort函数[1.1]

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');
函数名称前把你的命名空间带上

赞(0) 打赏
未经允许不得转载:菜鸟之家 » 怎么在框架中使用usort函数[1.1]

评论 抢沙发

登录

找回密码

注册