登录  /  注册

当前位置: 首页  >  下载站  >  类库  >  分页类库  >  php-paginator分页处理类

php-paginator分页处理类

php-paginator分页处理类

php-paginator分页处理类
分类:   类库下载 / 分页类库 发布时间:  2017-12-23 访问量:  9384
下载量:  430
点击下载
更多>

最新下载

50个优秀经典PHP算法大集合

经典PHP算法,学习优秀的思想 , 开拓思维
2135 2020-03-26

PHPExcel-1.8类库(值得收藏!)

PHPExcel 操作Office Excel 文档的PHP类库
11340 2018-09-26

依赖注入容器的PHP库

依赖注入容器的PHP库
361 2018-01-26

小巧的优化图片的PHP库

小巧的优化图片的PHP库
560 2018-01-26

提取GIF动画帧信息的PHP库

提取GIF动画帧信息的PHP库
246 2018-01-26

面向对象流包装PHP库

面向对象流包装PHP库
233 2018-01-26

远程文件下载php类库

远程文件下载php类库
640 2018-01-25

两表合并成一张新表的php类库

两表合并成一张新表的php类库
362 2018-01-25

静态文件生成的php类库

静态文件生成的php类库
346 2018-01-25

php小型日历类库

php小型日历类库
507 2018-01-25
下载首页 / 类库下载 / 分页类库
<?php
namespace JasonGrimes;
class Paginator
{
    const NUM_PLACEHOLDER = '(:num)';
    protected $totalItems;
    protected $numPages;
    protected $itemsPerPage;
    protected $currentPage;
    protected $urlPattern;
    protected $maxPagesToShow = 10;
    protected $previousText = 'Previous';
    protected $nextText = 'Next';
    /**
     * @param int $totalItems The total number of items.
     * @param int $itemsPerPage The number of items per page.
     * @param int $currentPage The current page number.
     * @param string $urlPattern A URL for each page, with (:num) as a placeholder for the page number. Ex. '/foo/page/(:num)'
     */
    public function __construct($totalItems, $itemsPerPage, $currentPage, $urlPattern = '')
    {
        $this->totalItems = $totalItems;
        $this->itemsPerPage = $itemsPerPage;
        $this->currentPage = $currentPage;
        $this->urlPattern = $urlPattern;
        $this->updateNumPages();
    }

函数1:根据总页数,当前页,和页分组及url产生分页导航,分页函数参数列表(有多少页,当前页,每页多少个 ,链接地址)。函数2:根据记录数,页列清数,$page,当前页;$row_num记录总数;$pagesize:每页记录数;$url记录页。

本站所有资源都是由网友投搞发布,或转载各大下载站,请自行检测软件的完整性!本站所有资源仅供学习与参考,请勿用于商业用途,否则产生的一切后果将由您自己承担!如有侵权请联系我们删除下架,联系方式:admin@php.cn

相关推荐

php-paginator分页处理类

php-paginator分页处理类
分页类库
2017-12-23

php分页程序paginator类

php分页程序paginator类
分页类库
2017-03-27

分页处理的PHP类

分页处理的PHP类
其它类库
2017-12-15

处理ajax和html的php分页类

处理ajax和html的php分页类
分页类库
2017-03-14

mysql+php分页类

mysql+php分页类
分页类库
2017-03-13

php 万能分页类

php 万能分页类
分页类库
2017-06-25

php仿ZOL分页类

php仿ZOL分页类
分页类库
2017-03-13

热门下载

关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2024 //m.sbmmt.com/ All Rights Reserved | php.cn | 湘ICP备2023035733号