pioniro/pagination
最新稳定版本:v1.1.1
Composer 安装命令:
composer require pioniro/pagination
包简介
simple bundle for pagination purpose
README 文档
README
Install
composer require pioniro/pagination
##Usage
use Pioniro\Pagination\Pagination\QueryBuilderPagination; use Pioniro\Pagination\Pager\CursorPager; // give me 10 items after item(id=15) $pager = new CursorPager(10, null, 15); $qb = $entityManager ->createQueryBuilder('App:Item', 'i') ->orderBy('i.id', 'ASC'); $pagination = new QueryBuilderPagination($qb, $pager); // items can be obtained foreach ($pagination as $item) { // ... } // OR foreach ($pagination->getItems() as $item) { // ... } // new Pager same type as $pager $pagination->getPager();
统计信息
- 总下载量: 195
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-10-20