侯体宗的博客
  • 首页
  • Hyperf版
  • beego仿版
  • 人生(杂谈)
  • 技术
  • 关于我
  • 更多分类
    • 文件下载
    • 文字修仙
    • 中国象棋ai
    • 群聊
    • 九宫格抽奖
    • 拼图
    • 消消乐
    • 相册

thinkPHP3.2实现分页自定义样式的方法

ThinkPHP  /  管理员 发布于 7年前   791

本文实例讲述了thinkPHP3.2实现分页自定义样式的方法。分享给大家供大家参考,具体如下:

下面是一个Tp3.2的自定义分页,这个方法也是在看过一个网友的博客之后受到启发这么写的。经过了一些修改,大家在看到代码之后也可以进行修改自定义样式;

主要的样式控制文件就是page.css,框架底层的分页类可以直接进行粘贴复制使用;

1. 框架底层的page.class.php 路径( Engine\Library\Think)

其实这个文件不需要过多修改,也可以直接使用官方的就行;下面是我现在用的,稍作了修改;

 '共 %TOTAL_ROW% 条记录',    'prev'  => '<<',    'next'  => '>>',    'first' => '1...',    'last'  => '...%TOTAL_PAGE%',    'theme' => '%FIRST% %UP_PAGE% %LINK_PAGE% %DOWN_PAGE% %END%',  );  /**   * 架构函数   * @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->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(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);    $this->lastSuffix && $this->config['last'] = $this->totalPages;    //上一页    $up_row = $this->nowPage - 1;    $up_page = $up_row > 0 ? 'url($up_row) . '" rel="external nofollow" >' . $this->config['prev'] . '' : '';    //下一页    $down_row = $this->nowPage + 1;    $down_page = ($down_row <= $this->totalPages) ? 'url($down_row) . '" rel="external nofollow" >' . $this->config['next'] . '' : '';    //第一页    $the_first = '';    if($this->totalPages > $this->rollPage && ($this->nowPage - $now_cool_page) >= 1){      $the_first = 'url(1) . '" rel="external nofollow" >' . $this->config['first'] . '';    }    //最后一页    $the_end = '';    if($this->totalPages > $this->rollPage && ($this->nowPage + $now_cool_page) < $this->totalPages){      $the_end = 'url($this->totalPages) . '" rel="external nofollow" >' . $this->config['last'] . '';    }    //数字连接    $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 && $page != $this->nowPage){        if($page <= $this->totalPages){          $link_page .= 'url($page) . '" rel="external nofollow" >' . $page . '';        }else{          break;        }      }else{        if($page > 0 && $this->totalPages != 1){          $link_page .= '' . $page . '';        }      }    }    //替换分页内容    $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 "{$page_str}";  }}

2. 控制器,随便写个demo。

public function index(){    $obj=M("news");    $count = $obj->where('status=1 and classID=74 ')->count();// 查询满足要求的总记录数    $limit = 10;    $Page = new \Think\Page($count,$limit);// 实例化分页类 传入总记录数和每页显示的记录数(25)    $show    = $Page->show();// 分页显示输出    $list = $obj->where('status=1 and classID=74 ')->order('writetime desc')->limit($Page->firstRow.','.$Page->listRows)->select();    $firstlist = $obj->where('status=1 and classID=74 and Indexfirst=1')->order('writetime desc')->limit(4)->select();    $this->assign('firstlist',$firstlist);    $this->assign('page',$show);// 赋值分页输出    $this->assign('list',$list);    $this->display();}

3. 接下来是View层,样式控制。page.css文件

.b-page { background: #fff; box-shadow: 0px 1px 2px 0px #E2E2E2;}.page { width: 100%; background: #FFF; text-align: center; overflow: hidden; font-size:14px; margin-top:50px;}.page .first,.page .prev,.page .current,.page .num,.page .current,.page .next,.page .end { padding: 8px 16px; margin: 0px 5px; display: inline-block; color: #144970; 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: #144970; color: #FFF; border-radius: 5px;}.page .current:hover { text-decoration: none; background: #144970;}.page .not-allowed { cursor: not-allowed;}

更多关于thinkPHP相关内容感兴趣的读者可查看本站专题:《ThinkPHP入门教程》、《thinkPHP模板操作技巧总结》、《ThinkPHP常用方法总结》、《codeigniter入门教程》、《CI(CodeIgniter)框架进阶教程》、《Zend FrameWork框架入门教程》及《PHP模板技术总结》。

希望本文所述对大家基于ThinkPHP框架的PHP程序设计有所帮助。

您可能感兴趣的文章:

  • ThinkPHP3.2.3实现分页的方法详解
  • Thinkphp3.2.3分页使用实例解析
  • thinkphp3.2.3 分页代码分享
  • thinkPHP3.2.3结合Laypage实现的分页功能示例
  • thinkPHP5框架实现分页查询功能的方法示例
  • thinkphp框架page类与bootstrap分页(美化)
  • thinkPHP5框架实现基于ajax的分页功能示例
  • thinkPHP5框架分页样式类完整示例
  • ThinkPHP3.2框架自带分页功能实现方法示例


  • 上一条:
    thinkphp 中的volist标签在ajax操作中的特殊性(推荐)
    下一条:
    thinkPHP5框架数据库连贯操作之cache()用法分析
  • 昵称:

    邮箱:

    0条评论 (评论内容有缓存机制,请悉知!)
    最新最热
    • 分类目录
    • 人生(杂谈)
    • 技术
    • linux
    • Java
    • php
    • 框架(架构)
    • 前端
    • ThinkPHP
    • 数据库
    • 微信(小程序)
    • Laravel
    • Redis
    • Docker
    • Go
    • swoole
    • Windows
    • Python
    • 苹果(mac/ios)
    • 相关文章
    • thinkphp + mongodb项目中数据加载慢问题分析及解决(0个评论)
    • thinkphp6框架中封装redis操作类(0个评论)
    • thinkphp6框架中实现定时任务功能流程步骤(0个评论)
    • Thinkphp5.1框架中实现Session+Redis会话共享流程步骤(0个评论)
    • TP5框架版本5.0.10安全漏洞根据官方补丁修复,也是本站安全漏洞修复(0个评论)
    • 近期文章
    • 在go中实现一个常用的先进先出的缓存淘汰算法示例代码(0个评论)
    • 在go+gin中使用"github.com/skip2/go-qrcode"实现url转二维码功能(0个评论)
    • 在go语言中使用api.geonames.org接口实现根据国际邮政编码获取地址信息功能(1个评论)
    • 在go语言中使用github.com/signintech/gopdf实现生成pdf分页文件功能(0个评论)
    • gmail发邮件报错:534 5.7.9 Application-specific password required...解决方案(0个评论)
    • 欧盟关于强迫劳动的规定的官方举报渠道及官方举报网站(0个评论)
    • 在go语言中使用github.com/signintech/gopdf实现生成pdf文件功能(0个评论)
    • Laravel从Accel获得5700万美元A轮融资(0个评论)
    • 在go + gin中gorm实现指定搜索/区间搜索分页列表功能接口实例(0个评论)
    • 在go语言中实现IP/CIDR的ip和netmask互转及IP段形式互转及ip是否存在IP/CIDR(0个评论)
    • 近期评论
    • 122 在

      学历:一种延缓就业设计,生活需求下的权衡之选中评论 工作几年后,报名考研了,到现在还没认真学习备考,迷茫中。作为一名北漂互联网打工人..
    • 123 在

      Clash for Windows作者删库跑路了,github已404中评论 按理说只要你在国内,所有的流量进出都在监控范围内,不管你怎么隐藏也没用,想搞你分..
    • 原梓番博客 在

      在Laravel框架中使用模型Model分表最简单的方法中评论 好久好久都没看友情链接申请了,今天刚看,已经添加。..
    • 博主 在

      佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 @1111老铁这个不行了,可以看看近期评论的其他文章..
    • 1111 在

      佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 网站不能打开,博主百忙中能否发个APP下载链接,佛跳墙或极光..
    • 2016-10
    • 2017-07
    • 2017-08
    • 2017-09
    • 2017-10
    • 2017-12
    • 2018-01
    • 2018-02
    • 2020-03
    • 2021-07
    • 2021-12
    • 2022-05
    • 2022-06
    • 2022-09
    • 2023-01
    Top

    Copyright·© 2019 侯体宗版权所有· 粤ICP备20027696号 PHP交流群

    侯体宗的博客