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

thinkPHP框架可添加js事件的分页类customPage.class.php完整实例

ThinkPHP  /  管理员 发布于 8年前   196

本文实例讲述了thinkPHP框架可添加js事件的分页类customPage.class.php。分享给大家供大家参考,具体如下:

用于ajax动态加载数据的分页类,分页事件可以动态添加,去除了a链接中的href地址。

 // +----------------------------------------------------------------------namespace Think;class customPage{  public $firstRow; // 起始行数  public $listRows; // 列表每页显示行数  public $parameter; // 分页跳转时要带的参数  public $totalRows; // 总行数  public $totalPages; // 分页总页面数  public $rollPage  = 6;// 分页栏每页显示的页数  public $lastSuffix = true; // 最后一页是否显示总页数  private $p    = 'p'; //分页参数名  private $url   = ''; //当前链接URL  private $nowPage = 1;  // 分页显示定制  private $config = array(    'header' => '共 %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->totalPages = ceil($this->totalRows / $this->listRows); //总页数    if ($this->nowPage>$this->totalPages) {      $this->nowPage = $this->totalPages ;    }    $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(ACTION_NAME, $this->parameter);    /* 计算分页信息 */    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 ? '上一页' : '';    //下一页    $down_row = $this->nowPage + 1;    $down_page = ($down_row <= $this->totalPages) ? '下一页' : '';    //第一页    $the_first = '';    if($this->totalPages > $this->rollPage && ($this->nowPage - $now_cool_page) >= 1){      $the_first = '第一页';    }    //最后一页    $the_end = '';    //if($this->totalPages > $this->rollPage && ($this->nowPage + $now_cool_page) < $this->totalPages){    if($this->totalPages > $this->rollPage && ($this->nowPage + $now_cool_page) < $this->totalPages){      $the_end = 'totalRows.'" href="" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >最后一页';    }    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 .= ('
  • '.$page.'
  • '); }else{ break; } }else{ if($page > 0 && $this->totalPages != 1){ $link_page .= ('
  • '.$page.'
  • '); } } } if (!empty($link_page)) $link_page = '
      '.$link_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']); $page_str = trim($page_str); if(!empty($page_str)) $page_str .= '

    跳转'; return $page_str; }}

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

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

    您可能感兴趣的文章:

    • PHP封装的page分页类定义与用法完整示例
    • PHP封装的完整分页类示例
    • php封装的page分页类完整实例
    • php自定义分页类完整实例
    • php封装的page分页类完整实例代码


  • 上一条:
    thinkPHP5.0框架环境变量配置方法
    下一条:
    ThinkPHP3.2框架使用addAll()批量插入数据的方法
  • 昵称:

    邮箱:

    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+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个评论)
    • PHP 8.4 Alpha 1现已发布!(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交流群

    侯体宗的博客