YII中自定义查询条件

来源:互联网 发布:美即黑茶酵力面膜知乎 编辑:程序博客网 时间:2024/05/21 11:36
1.
class Post extends CActiveRecord{    ......    public function scopes()    {        return array(            'published'=>array(                'condition'=>'status=1',            ),            'recently'=>array(                'order'=>'create_time DESC',                'limit'=>5,            ),        );    }}


2.

$posts=Post::model()->published()->recently()->findAll();

3.

public function recently($limit=5){    $this->getDbCriteria()->mergeWith(array(        'order'=>'create_time DESC',        'limit'=>$limit,    ));    return $this;}

4.

$posts=Post::model()->published()->recently(3)->findAll();


原创粉丝点击