当前位置:首页 > PHP教程 > PHP常见问题

Yii1.1中通过Sql查询进行的分页操作方法

控制器中方法:

public function actiontindex(){ $user = yii::app()->user; $id = $user->id; $connection=yii::app()->db; $sql= "sql查询语句"; $command = $connection->createcommand($sql)->queryall(); $pages = new cpagination(count($command)); $list = $connection->createcommand($sql." limit ".$pages->limit." offset ".$pages->offset."")->queryall(); $this->render('index',array( 'bonus' => $list, 'pages' => $pages, )); }

视图中显示为:

第一部分为查询的结果显示:

<table class="table table-bordered"> <thead> <tr> <th class="per10">公文类型</th> <th class="per50">公文标题</th> <th class="per15">当前步骤</th> <th class="per15">日期</th> </tr> </thead> <tbody> <?php if (isset($bonus)):?> <?php foreach ($bonus as $key=>$ad): ?> <tr> <td><?=$ad['typename'] ?></td> <td><?=$ad['doc_title'] ?></td> <td><?=$ad['taskname'] ?></td> <td><?=date("y-m-d h:i:s",$v['create_time']) ?></td> </tr> <?php endforeach; ?> <?php endif; ?> </tbody> </table>

第二部分为分页的显示:

<?php $this->widget('clinkpager',array( 'header'=>'', 'firstpagelabel' => '首页', 'lastpagelabel' => '末页', 'prevpagelabel' => '上一页', 'nextpagelabel' => '下一页', 'pages' => $pages, 'maxbuttoncount'=>8, 'cssfile'=>false, 'htmloptions' =>array("class"=>"pagination"), 'selectedpagecssclass'=>"active" ) ); ?>

以上所述是小编给大家介绍的yii1.1中通过sql查询进行的分页操作,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对硕编程网站的支持!



【说明】本文章由站长整理发布,文章内容不代表本站观点,如文中有侵权行为,请与本站客服联系(QQ:254677821)!