-1
A
回答
11
嘗試ceil()函數。
$ pages = ceil($ items/$ itemsPerPage);
+0
謝謝,這工作。 – 2012-07-24 20:33:07
2
$count_pages = ceil($total/$items_per_page);
2
這應該爲你做的伎倆。 Ceil向上滾動數字,始終向上。
<?php
$maxNrOfPages = ceil($max/$itemsPerPage);
?>
3
我相信天花板功能就是你要找的。
ceil($items/$items_per_page)
+0
頁數應該是整數。我建議用intval()調用包裝:'intval(ceil($ items/$ items_per_page));' – 2016-11-30 11:47:48
相關問題
- 1. 獲取PHP頁面
- 2. 從php頁面獲取JSON數據
- 3. curl php從下一頁獲取數據
- 4. PHP:獲取頁面URL減去參數
- 5. PHP從其他頁面獲取數據
- 6. 從PHP的網頁獲取數據
- 7. 獲取頁數
- 8. 從PHP頁面獲取var
- 9. PHP:獲取空白頁
- 10. PHP獲取網頁內容
- 11. 獲取當前頁面(PHP)
- 12. 從php頁面獲取值
- 13. MigraDoc - 獲取頁數
- 14. 獲取數組php
- 15. PHP獲取數組
- 16. 獲取數組PHP
- 17. 獲取數據PHP
- 18. 獲取PHP數組
- 19. 獲取PHP參數
- 20. Php下一頁和上一頁從mysql獲取數據
- 21. 試圖從php頁面獲取數據使用jQuery獲取json數據
- 22. 獲取網頁
- 23. PHP:獲取調用我的頁面的url頁面php
- 24. 從網頁獲取JavaScript數據數組
- 25. 獲取由ajax函數調用的php頁面的參數
- 26. 使用Php獲取網頁內容
- 27. 動態獲取.php頁面名稱
- 28. 獲取頁面的URL在PHP
- 29. 在php中獲取頁面的html
- 30. PHP,獲取網頁內容文字
贊...如何做數學(提示:'總/每頁'向上取整)?或者你有特定於PHP的問題? – deceze 2012-07-24 20:31:17
只需使用此http://www.catchmyfame.com/2007/07/28/finally-the-simple-pagination-class/ – j08691 2012-07-24 20:33:04