3

如果我知道有项目的总数以及每页显示的项目数,我如何获得页数?例如,我知道我有 11 个项目,每页显示 10 个项目。所以我会有2页。我将如何获得 PHP 中的页数?

谢谢

4

4 回答 4

16

试试 ceil() 函数。

$pages = ceil($items/$itemsPerPage);

于 2012-07-24T20:30:45.663 回答
5

我相信天花板功能是您正在寻找的。

ceil($items/$items_per_page)
于 2012-07-24T20:31:38.447 回答
3
$count_pages = ceil($total / $items_per_page);
于 2012-07-24T20:30:57.363 回答
3

这应该为您解决问题。Ceil 向上舍入数字,始终向上。

<?php
$maxNrOfPages = ceil($max/$itemsPerPage);
?>
于 2012-07-24T20:30:58.170 回答