当前位置:Gxlcms > PHP教程 > php分页类代码示例,可在php框架中使用的分页类

php分页类代码示例,可在php框架中使用的分页类

时间:2021-07-01 10:21:17 帮助过:5人阅读

  1. //php分页类代码
  2. class page{
  3. public $page; //当前页
  4. public $pagenum; // 页数
  5. public $pagesize; // 每页显示条数
  6. public function __construct($count, $pagesize){
  7. $this->pagenum = ceil($count/$pagesize);
  8. $this->pagesize = $pagesize;
  9. $this->page =(isset($_GET['p'])&&$_GET['p']>0) ? intval($_GET['p']) : 1;
  10. }
  11. /**
  12. * 获得 url 后面get传递的参数
  13. */
  14. public function getUrl(){
  15. $url = 'index.php?'.http_build_query($_GET);
  16. $url = preg_replace('/[?,&]p=(\w)+/','',$url);
  17. $url .= (strpos($url,"?") === false) ? '?' : '&';
  18. return $url;
  19. }
  20. /**
  21. * 获得分页html
  22. */
  23. public function getPage(){
  24. $url = $this->getUrl();
  25. $start = $this->page-5;
  26. $start=$start>0 ? $start : 1;
  27. $end = $start+9;
  28. $end = $end<$this->pagenum ? $end : $this->pagenum;
  29. $pagestr = '';
  30. if($this->page>5){
  31. $pagestr = "首页 ";
  32. }
  33. if($this->page!=1){
  34. $pagestr.= "page-1).">上一页";
  35. }
  36. for($i=$start;$i<=$end;$i++){
  37. $pagestr.= "".$i." ";
  38. }
  39. if($this->page!=$this->pagenum){
  40. $pagestr.="page+1).">下一页";
  41. }
  42. if($this->page+5<$this->pagenum){
  43. $pagestr.="pagenum.">尾页 ";
  44. }
  45. return $pagestr;
  46. } // edit: bbs.it-home.org
  47. }
  48. // 分页代码测试
  49. $page = new page(100,10);
  50. $str=$page->getPage();
  51. echo $str;
  52. ?>

人气教程排行