mazanax/paginator

为您的网站提供简单的分页库

v1.0.3 2018-01-12 10:11 UTC

This package is auto-updated.

Last update: 2024-09-17 10:09:53 UTC


README

Minimum PHP Version Latest Stable Version Build Status codecov

分页器

为您的网站提供简单的分页库

安装

composer require mazanax/paginator

使用

<?php

$pagination = new Pagination(['separator' => '|', 'on_page' => 5, 'section_size' => 5]);
$pagination->getPages(4, 100); // will returns [1, 2, 3, 4, 5, '|', 20]