码迷,mamicode.com
首页 > Web开发 > 详细

thinkphp分页实例

时间:2016-02-21 11:31:42      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:

public function index() {

		import ( ‘ORG.Util.Page‘ );

		$m = D ( "Tx_record" );

		

		$count = $m->count (); // 查询满足要求的总记录数

		$Page = new Page ( $count, 10 ); // 实例化分页类 传入总记录数和每页显示的记录数

		$Page -> setConfig(‘header‘, ‘条记录‘);

        $Page -> setConfig(‘theme‘, ‘<li><a>%totalRow% %header%</a></li> <li>%upPage%</li> <li>%downPage%</li> <li>%first%</li>  <li>%prePage%</li>  <li>%linkPage%</li>  <li>%nextPage%</li> <li>%end%</li> ‘);//(对thinkphp自带分页的格式进行自定义)

		$show = $Page->show (); // 分页显示输出

		

		$result = $m->limit ( $Page->firstRow . ‘,‘ . $Page->listRows )->order("id desc")->relation(true)->select ();

		$this->assign ( "result", $result );

		$this->assign ( "page", $show ); // 赋值分页输出

		$this->display ();

	}

 技术分享

thinkphp分页实例

标签:

原文地址:http://www.cnblogs.com/lvchenfeng/p/5204525.html

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