zoukankan      html  css  js  c++  java
  • (转)ThinkPHP使用心得分享-分页类Page的用法

    转之--http://www.jb51.net/article/50138.htm

    ThinkPHP中的Page类在ThinkPHP/Extend/Library/ORG/Util/Page.class.php中,所以使用前要引入Page类:

    复制代码代码如下:

    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条内容
    $limit = $page->firstRow . ',' . $page->listRows;//每页的数据数和内容$limit
    $result =$db->where($where))->limit($limit)->select();//分页查询结果
    $this->result = $result;//赋值
    $this->show = $page->show();//获取分页的底部信息

    以上代码是分页类实现的基本语句,当然喜欢使用原生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();

    当然,分布查询获取的内容也可以先对查询完的数据进行处理再赋值,比如

    复制代码代码如下:

         ...

        $result =$db->where($where))->limit($limit)->select();//分页查询结果
        $res = abc($result);//abc方法(自定义方法或php函数)对结果$result进行数据排序或重组处理等
        $this->result = $res;//赋值

  • 相关阅读:
    GIS 中生成平头缓冲区的方法
    arcengine中图层路径的访问与修改
    Codeforces B. Nearest Fraction运行结果与codeblocks运行结果不一致,求大神指教
    html5各种页面切换效果和模态对话框
    java配置数据库连接池
    android动态壁纸调用
    cocod2d 兼容iphone/ipad 问题
    地方房产网站seo优化完善 提高流量和权重
    Python3.x实现网页登录表单提交功能
    进程地址空间的布局(整理)
  • 原文地址:https://www.cnblogs.com/wanshutao/p/4661938.html
Copyright © 2011-2022 走看看