ThinkPHP中的Page类在ThinkPHP/Extend/Library/ORG/Util/Page.class.php中,因此使用前要引入Page类:php
1 import('ORG.Util.Page'); //Page类的引入 2 $db = M('abc');//实例化数据表abc 3 $where = array( 4 'id'=>'2'; 5 );//条件语句$where,例表中字段id的值为2 6 $count = $db->where($where)->count();//获取符合条件的数据总数count 7 $page = new Page($count, 10);//实例化page类,传入数据总数和每页显示10条内容 8 $limit = $page->firstRow . ',' . $page->listRows;//每页的数据数和内容$limit 9 $result =$db->where($where))->limit($limit)->select();//分页查询结果 10 $this->result = $result;//赋值 11 $this->show = $page->show();//获取分页的底部信息
以上代码是分页类实现的基本语句,固然喜欢使用原生sql语句的朋友也能够配合原生sql语句实现查询分页:sql
import('ORG.Util.Page'); //Page类的引入 $db = M('abc');//实例化数据表abc $where = array( 'id'=>'2'; );//条件语句$where,例表中字段id的值为2 $count = $db->where($where)->count();//获取符合条件的数据总数count $page = new Page($count, 10);//实例化page类,传入数据总数和每页显示10条内容 $Modle = new Model();//实例化新数据模型 $sql = 'select id,name from abc where '.$where.' limit '.$page->firstRow.','.$page->listRows;//sql语句 $result = $Modle->query($sql);//执行sql语句 $this->result = $result $this->show=$page->show();
固然,分布查询获取的内容也能够先对查询完的数据进行处理再赋值,好比
函数
1 ... . . 9 $result =$db->where($where))->limit($limit)->select();//分页查询结果 10 $res = abc($result);//abc方法(自定义方法或php函数)对结果$result进行数据排序或重组处理等 10 $this->result = $res;//赋值
以上就是Jc对ThinkPHP中分页类的使用小结,有哪些不对的地方或能够改进的地方但愿各位码友提出~this