php分页代码简单实现教程

来自:互联网
时间:2020-05-05
阅读:
免费资源网 - https://freexyz.cn/

php分页代码简单实现

1、首先获取数据的总条数;

2、然后在用总条数除以每页的条数,得出的到总页数;

//模拟总条数
$total = 84;
//每页的数量
$count = 10;
//计算页数
$page = $total / $count;

echo $page;

输出结果:8.4

3、再将总页数使用“ceil()”函数转为整数,“ceil()”函数意思就是对小数向上取整;

<?php
//模拟总条数
$total = 84;
//每页的数量
$count = 10;
//计算页数
$page = $total / $count;
//向上取整
$page = ceil($page);

echo $page;

输出结果:9

4、最后根据总页数渲染翻页链接。

// 翻页链接  
for ($i = 0; $i < $page; $i ++) {  
    echo "<a href=index.php?page=" . ($i + 1) . ">" . ($i + 1) . "</a>";  
}
免费资源网 - https://freexyz.cn/
返回顶部
顶部