heropoo / pagination
A pagination component
Installs: 99
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/heropoo/pagination
This package is auto-updated.
Last update: 2025-09-13 01:33:59 UTC
README
Pagination
使用方法
install via composer
composer require heropoo/pagination
示例
$user_total = 100; $page_size = 10; $page = new Page($user_total, $page_size); //获取分页 offset 参数 $limit = $page->getLimit(); //等于 $page_size $offset = $page->getOffset(); //输出的html $html = $page->getHtml(); echo $html;