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/ */
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;
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.