码迷,mamicode.com
首页 > 其他好文 > 详细

yii分页操作

时间:2017-07-28 12:13:12      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:model   ext   cdb   cte   get   desc   ati   color   options   

$model=Article::model();

$a = new CDbCriteria();
$a->order = ‘head DESC,time DESC‘; //从左到右按规则排序

$total = $model->count($a);
$pager = new CPagination($total);
$pager->pageSize = 15;
$pager->applyLimit($a);
$model = $model->findAll($a);

$this->widget(‘CLinkPager‘,array(
‘header‘=>‘‘,
‘firstPageLabel‘ => ‘首页‘,
‘lastPageLabel‘ => ‘末页‘,
‘prevPageLabel‘ => ‘上一页‘,
‘nextPageLabel‘ => ‘下一页‘,
‘pages‘ => $pages,
‘maxButtonCount‘=>8,

//加载第三方page css
‘cssFile‘=>false,
‘htmlOptions‘ =>array("class"=>"pagination"),
‘selectedPageCssClass‘=>"active"
)
);

 

yii分页操作

标签:model   ext   cdb   cte   get   desc   ati   color   options   

原文地址:http://www.cnblogs.com/luotingliang/p/7249507.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!