benhall14/php-pagination
Composer 安装命令:
composer require benhall14/php-pagination
包简介
A lightweight PHP pagination class to output pagination links.
关键字:
README 文档
README
A lightweight PHP pagination class to output pagination links.
This class is written to be chain-able so to create a logically fluent and easily readable way to create a set of pagination links.
It simplifies the paging of results and outputs Bootstrap 4 compatible navigation HTML.
It has been fully tested to work with PHP 5.5+, including PHP 7+
Installation via Composer
You can now install this class via composer.
$ composer require benhall14/php-pagination
Remember to add the composer autoloader before using the class and use the correct namespace.
require 'vendor/autoload.php';
use benhall14\PHPPagination\Pagination as Pagination;
Usage
Please make sure you have added the required classes.
In its simplest form, you can use the following to set up the paginator.
$pagination = new Pagination(); $pagination->total(100)->output();
You can use the following chainable methods to customise the final pagination links.
# sets the total number of items in the collection - e.g. 100 $pagination->total(number); # sets the current page. By default, the class looks for the page value in the GET query string. $pagination->page(number); # sets the number of items to show per page. Default = 20 $pagination->perPage(number); # sets the separator (if using). Default '...' $pagination->separator(text); # sets the screen reader class. Default 'true', but you may need to set it to false if you are using your own custom css. $pagination->screenReader(bool); # sets the Bootstrap 4 pagination link class to small $pagination->small(); # sets the Bootstrap 4 pagination link class to medium $pagination->medium(); # sets the Bootstrap 4 pagination link class to large $pagination->large(); # sets the Bootstrap 4 alignment class to left $pagination->alignLeft(); # sets the Bootstrap 4 alignment class to center $pagination->alignCenter(); # sets the Bootstrap 4 alignment class to right $pagination->alignRight(); # sets the flag to show the separator $pagination->showSeparator(); # sets the flag to hide the separator $pagination->hideSeparator(); # sets the next text string - Default: 'Next' $pagination->nextText(text); # sets the previous text string - Default: 'Previous' $pagination->previousText(text); # hides the 'Next' link $pagination->hideNext(); # shows the 'Next' link $pagination->showNext(); # hides the 'Previous' link $pagination->hidePrevious(); # shows the 'Previous' link $pagination->showPrevious(); # sets a prefix text for each page link: {prefix} {page number} {suffix} $pagination->pagePrefix(text); # sets a suffix text for each page link: {prefix} {page number} {suffix} $pagination->pageSuffix(text); # sets the flag to retain the query string for each page link. $pagination->retainQueryString(); # sets the flag to ignore the query string when building the links $pagination->dismissQueryString(); # sets the number of pages BEFORE the separator $pagination->pagesBeforeSeparator(number); # sets the number of pages AROUND the active page $pagination->pagesAroundActive(number); # sets the URL pattern - Default $pattern: ?page=(:num)- $replacement: (:num) $pagination->pattern($pattern, $replacement); # The class will replace the $replacement token in the $pattern with the actual page number
Requirements
Works with PHP 5.5, PHP 5.6, and PHP 7+
License
Copyright (c) 2016-2019 Benjamin Hall, ben@conobe.co.uk https://conobe.co.uk
Licensed under the MIT license
Donate?
If you find this project helpful or useful in any way, please consider getting me a cup of coffee - It's really appreciated :)
benhall14/php-pagination 适用场景与选型建议
benhall14/php-pagination 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 15.63k 次下载、GitHub Stars 达 4, 最近一次更新时间为 2019 年 03 月 03 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「php」 「pagination」 「paginate」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 benhall14/php-pagination 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 benhall14/php-pagination 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 benhall14/php-pagination 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Forked from https://github.com/deltaaskii/lara-pdf-merger. Add condition if(!class_exists('TCPDF')) (depreciated in php 7.2) to foreach.
Add stage scopes to models with parents
A generic, Twitter Bootsrap compatible, PHP pagination library that automatically generates navigation links
Provides a Data Grid tables for your Symfony project.
A generic, Twitter Bootsrap compatible, PHP pagination library that automatically generates navigation links
统计信息
- 总下载量: 15.63k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 4
- 点击次数: 12
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-03-03