php 分页类

2021/6/28 14:50:18

本文主要是介绍php 分页类,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

安装分页类库

composer require "jasongrimes/paginator:~1.0"

用法

index.php

<?php
require '../vendor/autoload.php';

use JasonGrimes\Paginator;

$totalItems = 500;  //总页数
$itemsPerPage = 10;  // 每页显示数
$currentPage = 5; // 当前所在页数
$urlPattern = '/foo/page/(:num)';  // 定义跳转地址
$paginator = new Paginator($totalItems, $itemsPerPage, $currentPage, $urlPattern);

?>
<html>
<head>
    <link rel="stylesheet" href="//cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap.min.css">
</head>
<body>
<?php
echo $paginator;
?>
</body>
</html>

浏览器显示



这篇关于php 分页类的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程