thinkphp简洁、美观、靠谱的分页类

废话不多说先上图预览下;
即本博客的分页;
白俊遥博客
这个分页类是在thinkphp框架内置的分页类的基础上修改而来;
原分页类的一些设计,在实际运用中感觉不是很方便;

  1. 只有一页内容时不显示分页;

  2. 原分页类在当前页是第一页和最后一页的时候,不显示第一页和最后一页的按钮;
    白俊遥博客

  3. 分页数比较少时不显示首页和末页按钮;

  4. 包裹分页内容的父级div没有class;
    针对以上问题逐一进行了修改成如下;

  5. 如果没有数据不显示分页,如果有一页及以上内容即显示分页;

  6. 默认就显示第一页和最后一页按钮,但是在当前页是第一页和最后一页的时候按钮点击无效果;

  7. 默认就显示首页和末页按钮;

  8. 为包裹分页内容的父级div添加名为page的class;

  9. 显示总共查出的内容条数;
    示例环境:thinkphp3.2.3;

分页类目录:/Thinkphp/Library/Org/Bjy/Page.class.php
分页类代码如下:

<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK IT ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006-2014 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: 麦当苗儿 <zuojiazi@vip.qq.com> <http://www.zjzit.cn>
// +----------------------------------------------------------------------
/*
 * PHP分页类
 * 修改者:白俊遥
 * 日  期:2015.5.10
 * 邮  箱:baijunyao@baijunyao.com
 * 博  客:http://baijunyao.com
 */
namespace Org\Bjy;
class Page{
    public $firstRow; // 起始行数
    public $listRows; // 列表每页显示行数
    public $parameter; // 分页跳转时要带的参数
    public $totalRows; // 总行数
    public $totalPages; // 分页总页面数
    public $rollPage   = 5;// 分页栏每页显示的页数
    public $lastSuffix = true; // 最后一页是否显示总页数
    private $p       = 'p'; //分页参数名
    private $url     = ''; //当前链接URL
    private $nowPage = 1;
    // 分页显示定制
    private $config  = array(
        'header' => '<span class="rows">共 %TOTAL_ROW% 条记录</span>',
        'first'   => '首页',
        'prev'   => '上一页',
        'next'   => '下一页',
        'last'   => '末页',
        'theme'  => '%FIRST% %UP_PAGE% %LINK_PAGE% %DOWN_PAGE% %END% %HEADER%',
    );
    /**
     * 架构函数
     * @param array $totalRows  总的记录数
     * @param array $listRows  每页显示记录数
     * @param array $parameter  分页跳转的参数
     */
    public function __construct($totalRows, $listRows=20, $parameter = array()) {
        C('VAR_PAGE') && $this->p = C('VAR_PAGE'); //设置分页参数名称
        /* 基础设置 */
        $this->totalRows  = $totalRows; //设置总记录数
        $this->listRows   = $listRows;  //设置每页显示行数
        $this->parameter  = empty($parameter) ? $_GET : $parameter;
        $this->nowPage    = empty($_GET[$this->p]) ? 1 : intval($_GET[$this->p]);
        $this->nowPage    = $this->nowPage>0 ? $this->nowPage : 1;
        $this->firstRow   = $this->listRows * ($this->nowPage - 1);
    }
    /**
     * 定制分页链接设置
     * @param string $name  设置名称
     * @param string $value 设置值
     */
    public function setConfig($name,$value) {
        if(isset($this->config[$name])) {
            $this->config[$name] = $value;
        }
    }
    /**
     * 生成链接URL
     * @param  integer $page 页码
     * @return string
     */
    private function url($page){
        return str_replace(urlencode('[PAGE]'), $page, $this->url);
    }
    /**
     * 组装分页链接
     * @return string
     */
    public function show() {
        if(0 == $this->totalRows) return '';
        /* 生成URL */
        $this->parameter[$this->p] = '[PAGE]';
        $this->url = U(MODULE_NAME.'/'.CONTROLLER_NAME.'/'.ACTION_NAME, $this->parameter);
        /* 计算分页信息 */
        $this->totalPages = ceil($this->totalRows / $this->listRows); //总页数
        if(!empty($this->totalPages) && $this->nowPage > $this->totalPages) {
            $this->nowPage = $this->totalPages;
        }
        /* 计算分页零时变量 */
        $now_cool_page      = $this->rollPage/2;
        $now_cool_page_ceil = ceil($now_cool_page);
        //上一页
        $up_row  = $this->nowPage - 1;
        $up_page = $up_row > 0 ? '<a class="prev" href="' . $this->url($up_row) . '">' . $this->config['prev'] . '</a>' : '<a class="prev not-allowed" href="javascript:;">' . $this->config['prev'] . '</a>';
        //下一页
        $down_row  = $this->nowPage + 1;
        $down_page = ($down_row <= $this->totalPages) ? '<a class="next" href="' . $this->url($down_row) . '">' . $this->config['next'] . '</a>' : '<a class="next not-allowed" href="javascript:;">' . $this->config['next'] . '</a>';
        //第一页
        $the_first = '<a class="first" href="' . $this->url(1) . '">' . $this->config['first'] . '</a>';
        //最后一页
        $the_end = '<a class="end" href="' . $this->url($this->totalPages) . '">' . $this->config['last'] . '</a>';
        //数字连接
        $link_page = "";
        for($i = 1; $i <= $this->rollPage; $i++){
            if(($this->nowPage - $now_cool_page) <= 0 ){
                $page = $i;
            }elseif(($this->nowPage + $now_cool_page - 1) >= $this->totalPages){
                $page = $this->totalPages - $this->rollPage + $i;
            }else{
                $page = $this->nowPage - $now_cool_page_ceil + $i;
            }
            if ($page>0) {
                if($page != $this->nowPage){
                    if($page <= $this->totalPages){
                        $link_page .= '<a class="num" href="' . $this->url($page) . '">' . $page . '</a>';
                    }else{
                        break;
                    }
                }else{
                    $link_page .= '<span class="current">' . $page . '</span>';
                }
            }
        }
        //替换分页内容
        $page_str = str_replace(
            array('%HEADER%', '%NOW_PAGE%', '%UP_PAGE%', '%DOWN_PAGE%', '%FIRST%', '%LINK_PAGE%', '%END%', '%TOTAL_ROW%', '%TOTAL_PAGE%'),
            array($this->config['header'], $this->nowPage, $up_page, $down_page, $the_first, $link_page, $the_end, $this->totalRows, $this->totalPages),
            $this->config['theme']);
        return '<div class="page">'.$page_str.'</div>';
    }
}

分页类调用:

    $count=$this->where($where)->count();
    $page=new \Org\Bjy\Page($count,$limit);
    $list=$this->where($where)->order('addtime desc')->limit($page->firstRow.','.$page->listRows)->select();
    $show=$page->show();

分页类css

.b-page {
  background: #fff;
  box-shadow: 0px 1px 2px 0px #E2E2E2;
}
.page {
  width: 100%;
  padding: 30px 15px;
  background: #FFF;
  text-align: center;
  overflow: hidden;
}
.page .first,
.page .prev,
.page .current,
.page .num,
.page .current,
.page .next,
.page .end {
  padding: 8px 16px;
  margin: 0px 5px;
  display: inline-block;
  color: #008CBA;
  border: 1px solid #F2F2F2;
  border-radius: 5px;
}
.page .first:hover,
.page .prev:hover,
.page .current:hover,
.page .num:hover,
.page .current:hover,
.page .next:hover,
.page .end:hover {
  text-decoration: none;
  background: #F8F5F5;
}
.page .current {
  background-color: #008CBA;
  color: #FFF;
  border-radius: 5px;
  border: 1px solid #008CBA;
}
.page .current:hover {
  text-decoration: none;
  background: #008CBA;
}
.page .not-allowed {
  cursor: not-allowed;
}

分页类的使用方法和原thinkphp相同;具体参考:thinkphp手册-数据分页

白俊遥博客
请先登录后发表评论
  • latest comments
  • 总共24条评论
白俊遥博客

只是→路过、、、 :我看到白老大page类下的show方法改了,然后分页urL简洁,我也改,但是怎么都不行,url都是长的,string(0) ""string(4) "Home" string(4) "News" string(5) "index" array(1) { ["p"] => string(6) "[PAGE]" } /Home/News/index/p/%5BPAGE%5D.html

2019-06-28 16:14:05 回复

白俊遥博客 白俊遥博客

云淡风晴 :我在这两个地方进行了替换; https://github.com/baijunyao/thinkphp-bjyblog/blob/master/ThinkPHP/Common/functions.php#L1002   https://github.com/baijunyao/thinkphp-bjyblog/blob/master/Application/Common/Common/function.php#L308   

2019-06-28 21:07:45 回复

白俊遥博客

临风听月 :能加一下您的QQ吗?我现在快大三了,专业是云计算方向,但是我们学校这个专业是个坑,所以我大一的时候学完C和C++之后,又学了HTML/CSS、JS基础之后,就学PHP了。学PHP快一年了,学了快一个月的TP了,发现自己不知道怎么去学一个框架,什么都做不出来,而且觉得自己前边学的东西都忘的差不多了,最近真的处于低迷状态,特别难受。之前学PHP都是通过视频,很少看书,我也不知道这种学习方法是否正确。对PHP方向将来的就业其实不是很了解,知道需要学一些前端知识,自己也学了一些,其实大多还是迷茫的。如果能得到您的回复和指导,对我真的会是很大的鼓励

2017-06-08 10:39:16 回复

白俊遥博客

li :兄弟,学习光看视频是不行的,你得边学边敲,敲的时候你就知道你的问题在哪里了

2018-07-25 09:52:38 回复

白俊遥博客

Serene :你好,带入查询条件的分页,我看了您的全文搜索是以get请求带上查询条件的,代码看得不太懂。您可以解释一下吗?tp文档里说如果是post请求,那么只要给分页类的parameter属性赋值,我按着文档给parameter赋值,并没有分页成功。请教一下post请求的带参查询怎么分页成功?

2017-02-17 11:13:27 回复

白俊遥博客

Serene :场景:下拉框按“姓名“或”所在区域”选择,紧接着输入“关键字”,post请求查询。分页该怎么写?

2017-02-17 14:23:06 回复

白俊遥博客

Serene :我的查询条件是$map['id'] = array('in',$array)是因为这里的查询条件不能是in?

2017-02-17 18:05:03 回复

白俊遥博客

吴伟祥 :博客的回复bug,A写了一条评论,B在A的评论下面回复消息没问题!C在B下面点B回复A的消息的那个回复按钮,提交后会默认是回复A的!

2017-01-13 13:12:14 回复

白俊遥博客 白俊遥博客

云淡风晴 :多谢反馈;

2017-01-15 11:41:16 回复

白俊遥博客

吴伟祥 白俊遥博客你的东西就是好!拿来直接用!来,我亲你一下!不要钱的!你开源代码,我开源吻!

2017-01-13 13:07:28 回复

白俊遥博客

xuli :楼主好厉害,求支路

2016-12-29 17:00:02 回复

白俊遥博客

开心果呵呵 :请问以下评论中的问题解决了吗?

2016-12-23 09:31:11 回复

白俊遥博客

Spectre、 :反馈bug 分页那边对照thinkphp page源码少了一个限制条件导致会出现负数                   if ($page > 0 && 1 != $this->totalPages) { $link_page .= '' . $page . '';}                  

2016-12-20 18:32:00 回复

白俊遥博客 白俊遥博客

云淡风晴 :多谢反馈;

2016-12-22 22:51:23 回复

白俊遥博客

孤城浪子 :为什么不把css直接整合进行内呢?这样用起来不就更方便吗?

2016-09-10 18:10:20 回复

白俊遥博客 白俊遥博客

云淡风晴 :行内样式维护起来太痛苦了;

2016-09-11 00:30:49 回复

白俊遥博客

吴伟祥 :赞同

2017-01-13 13:08:16 回复

白俊遥博客

吴伟祥 :1

2017-01-13 13:08:40 回复

白俊遥博客

吴伟祥 :为什么我点击你云淡风晴的下面的回复,会直接默认回复孤城浪子!这是一个bug!!!!!!

2017-01-13 13:09:55 回复

白俊遥博客

香蕉你个banana 白俊遥博客分页在本地测试没有问题,但是项目部署上线出现了bug,原因是在url缺失一个路径.怎么都解决不了,在本地测试没有任何问题,但是部署上线出现问题,希望能帮一下我,分页不能用.谢谢您.希望能帮我一下

2016-08-26 20:25:52 回复

白俊遥博客 白俊遥博客

云淡风晴 :缺失的url是什么样的?发出来看下;

2016-08-27 00:29:02 回复

白俊遥博客

香蕉你个banana :正常的url: http://localhost/xiangmu/index.php/home/admin/selecCase/p/2.html;丢失的url:http://localhost/xiangmu/index.php/admin/selecCase/p/2.html;本地测试没有问题,当项目布置上线时home丢失,现在用了url重定向暂时解决了,但是不知道这是什么原因造成的.

2016-08-29 09:26:39 回复

白俊遥博客

jrtuy45ewy :分页在最后几页 会出现负数 不知道是我的问题还是代码有瑕疵

2016-03-30 17:00:15 回复

白俊遥博客 白俊遥博客

云淡风晴 :好的;感谢反馈;容我测试一番;

2016-03-30 17:03:28 回复