Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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();
```