PHP code example of tleckie / paginator

1. Go to this page and download the library: Download tleckie/paginator library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

tleckie / paginator example snippets




leckie\Paginator\Paginator;


$paginator = new Paginator(100,10, 2);

$paginator->getTotalPages();// 10
$paginator->getLastPage();  // 10
$paginator->getOffset();    // 10
$paginator->getPrevPage();  // 1
$paginator->getNextPage();  // 3
$paginator->hasNext();      // true
$paginator->hasPrev();      // true


PaginatorInterface


 public function getTotalRecords(): int;

 public function getItemsPerPage(): int;

 public function getCurrentPage(): int;

 public function setCurrentPage(int $currentPage): PaginatorInterface;

 public function setTotalRecords(int $totalRecords): PaginatorInterface;

 public function setItemsPerPage(int $itemsPerPage): PaginatorInterface;

 public function hasPrev(): bool;

 public function hasNext(): bool;

 public function getNextPage(): int;

 public function getPrevPage(): int;

 public function getLastPage(): int;

 public function getFirstPage(): int;

 public function getOffset(): int;

 public function getTotalPages(): int;