Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lablnet/php-pagination
Simple pagination library implements a paging interface on collections of things.
https://github.com/lablnet/php-pagination
best class fastest free oop pagination paginator php
Last synced: about 1 month ago
JSON representation
Simple pagination library implements a paging interface on collections of things.
- Host: GitHub
- URL: https://github.com/lablnet/php-pagination
- Owner: lablnet
- License: mit
- Created: 2018-11-29T03:01:29.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-11-29T03:03:22.000Z (about 6 years ago)
- Last Synced: 2024-04-19T12:02:52.732Z (8 months ago)
- Topics: best, class, fastest, free, oop, pagination, paginator, php
- Language: PHP
- Homepage:
- Size: 3.91 KB
- Stars: 3
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# PHP Pagination
Simple pagination library implements a paging interface on collections of things.## Requirement
- PHP
- Composer## install
run this command
``` composer require lablnet/pagination```## usage
```php
pagination();
$pag2 = new Pagination(1000,10,25,'https://example.com/blogs/');
echo $pag2->pagination();
```