PHP code example of haikara / pagination

1. Go to this page and download the library: Download haikara/pagination 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/ */

    

haikara / pagination example snippets


$pagination = new Pagination(
    range: 5, // いくつページ番号を表示するか。奇数のみ指定可。
    display: 10, // 一覧の表示件数
    current: 6, // 現在のページ番号
    total: 200 // 全件数
);

$pages = $pagination->getPages();
print_r($pages);
// [4, 5, 6, 7, 8]



$pagination = new Pagination(
    range: 5, // いくつページ番号を表示するか。奇数のみ指定可。
    display: 10, // 一覧の表示件数
    current: 6, // 現在のページ番号
    total: 200 // 全件数
);