PHP实现可自定义样式的分页类

这篇文章主要介绍了PHP实现可自定义样式的分页类,可以自定义分页样式,感兴趣的小伙伴们可以参考一下。

本文实例为大家分享了PHP实现可自定义样式的分页类,供大家参考,具体内容如下

  1. <?php
  2. //namespace Component;
  3. /**
  4. * 2016-3-27
  5. * @author ankang
  6. */
  7. class Page {
  8. private $ShowPage;
  9. private $CountPage;
  10. private $Floorp;
  11. private $PageUrl;
  12. private $PageClass;
  13. private $CurClass;
  14. /**
  15. * @author ankang
  16. * @param number $CountNum 数据总数
  17. * @param string $PageUrl 跳转链接
  18. * @param string $PageClass <a>标签 总体样式
  19. * @param string $PageUrl 当前页样式
  20. * @param number $PageSize 每页显示的数据条数
  21. * @param number $ShowPage 每次显示的页数
  22. */
  23. public function __construct($CountNum, $PageUrl = NULL, $PageClass = NULL,$CurClass = NULL, $PageSize = 20, $ShowPage = 5) {
  24. $this->ShowPage = $ShowPage;
  25. $this->CountPage = ceil ( $CountNum / $PageSize );
  26. $this->Floorp = floor ( $ShowPage / 2 ); // 偏移量
  27. $this->PageClass = is_null ( $PageClass ) ? '' : $PageClass;
  28. $this->CurClass = is_null ( $CurClass ) ? '' : $CurClass;
  29. // $ServerURL = ( preg_match('/\?/i', $_SERVER['REQUEST_URI']))?preg_replace('/\&p\=[0-9]+/i', "", $_SERVER['REQUEST_URI']) : $_SERVER['REQUEST_URI']."?";
  30. // if( substr($ButURL,0,2)=='//' ){
  31. // $ServerURL = substr($ServerURL,1);
  32. // }
  33. // $url = preg_replace('/p=[\d]*/i', '', $ServerURL);
  34. $url = '';
  35. //推荐自己传url,不传也可以打开上面的代码自动获取
  36. $this->PageUrl = is_null ( $PageUrl ) ? $url : $PageUrl;
  37. }
  38. /**
  39. *
  40. * @param number $Page
  41. * @param string $ShowToPage
  42. * 首页,上下页,尾页
  43. * @param string $Html 标签元素,li,p
  44. * @return string
  45. */
  46. public function getPage($Page = 1, $ShowToPage = true, $Html = null) {
  47. $StartPage = ($Page - $this->Floorp); // 开始页码
  48. $EndPage = ($Page + $this->Floorp); // 结束页码
  49. if ($this->CountPage < $this->ShowPage) {
  50. $StartPage = 1;
  51. $EndPage = $this->CountPage;
  52. }
  53. if ($StartPage < 1) {
  54. $StartPage = 1;
  55. $EndPage = $this->ShowPage;
  56. }
  57. if ($EndPage > $this->CountPage) {
  58. $StartPage = $this->CountPage - $this->ShowPage + 1;
  59. $EndPage = $this->CountPage;
  60. }
  61. $PageHtml = '';
  62. if (! is_null ( $Html )) {
  63. if ($Html == 'li') {
  64. $Shtml = '<li>';
  65. $Ehtml = '</li>';
  66. } else {
  67. $Shtml = '<p>';
  68. $Ehtml = '</p>';
  69. }
  70. }
  71. if (true == $ShowToPage) {
  72. $PageHtml .= "$Shtml<a href='{$this->PageUrl}p=1'>&laquo; 首页</a>$Ehtml";
  73. $PrveUrl = $this->getPrve($Page);
  74. $PageHtml .= "$Shtml<a href='{$PrveUrl}'>&laquo; 上一页</a>$Ehtml";
  75. }
  76. for($i = $StartPage; $i <= $EndPage; $i ++) {
  77. if ($Page == $i) {
  78. $PageHtml .= "$Shtml<a href='{$this->PageUrl}p={$i}' class='{$this->CurClass}'>{$i}</a>$Ehtml";
  79. } else {
  80. $PageHtml .= "$Shtml<a href='{$this->PageUrl}p={$i}' class='{$this->PageClass}'>{$i}</a>$Ehtml";
  81. }
  82. }
  83. if (true == $ShowToPage) {
  84. $NextUrl = $this->getNext($Page);
  85. $PageHtml .= "$Shtml<a href='{$NextUrl}'>下一页 &raquo;</a>$Ehtml";
  86. $PageHtml .= "$Shtml<a href='{$this->PageUrl}p={$this->CountPage}' >尾页 &raquo;</a>$Ehtml";
  87. }
  88. return $PageHtml;
  89. }
  90. public function getPrve($Page){
  91. if ($Page != 1) {
  92. $Prve = $Page - 1;
  93. $PrveUrl = "{$this->PageUrl}p={$Prve}";
  94. } else {
  95. $PrveUrl = "{$this->PageUrl}p=1";
  96. }
  97. return $PrveUrl;
  98. }
  99. public function getNext($Page){
  100. if ($Page != $this->CountPage) {
  101. $Next = $Page + 1;
  102. $NextUrl = "{$this->PageUrl}p={$Next}";
  103. } else {
  104. $NextUrl = "{$this->PageUrl}p={$this->CountPage}";
  105. }
  106. return $NextUrl;
  107. }
  108. }

再为大家分享一个主要用于新手学习php分页,代码简单实用,主要是注释很完整。

1. Page.class.php

  1. <?php
  2. /**
  3. * 分页类
  4. *
  5. * 调用方式:
  6. * $p=new Page(总页数,显示页数,当前页码,每页显示条数,[链接]);
  7. * print_r($p->getPages()); //生成一个页码数组(键为页码,值为链接)
  8. * echo $p->showPages(1); //生成一个页码样式(可添加自定义样式)
  9. *
  10. * @author: Dzer <Email:358654744@qq.com Blog:Dzer.me>
  11. * @version: 2014-12-25 09:09:42
  12. * @Last Modified time: 2014-12-28 17:37:13
  13. */
  14. /*
  15. 思路:
  16. 给我一个 总页数,需要显示的页数,当前页,每页显示的条数,连接
  17. 写一个方法 生成一个一维数组,键为页码 值为连接
  18. 写一个方法 返回一个生成好样式的页码(并且可以根据自己需要添加样式)
  19. 默认样式 共45条记录,每页显示10条,当前第1/4页 [首页] [上页] [1] [2] [3] .. [下页] [尾页]
  20. */
  21. class Page{
  22. protected $count; //总条数
  23. protected $showPages; //需要显示的页数
  24. protected $countPages; //总页数
  25. protected $currPage; //当前页
  26. protected $subPages; //每页显示条数
  27. protected $href; //连接
  28. protected $page_arr=array(); //保存生成的页码 键页码 值为连接
  29. /**
  30. * __construct 构造函数(获取分页所需参数)
  31. * @param int $count 总条数
  32. * @param int $showPages 显示页数
  33. * @param int $currPage 当前页数
  34. * @param int $subPages 每页显示数量
  35. * @param string $href 连接(不设置则获取当前URL)
  36. */
  37. public function __construct($count,$showPages,$currPage,$subPages,$href=''){
  38. $this->count=$count;
  39. $this->showPages=$showPages;
  40. $this->currPage=$currPage;
  41. $this->subPages=$subPages;
  42. //如果链接没有设置则获取当前连接
  43. if(emptyempty($href)){
  44. $this->href=htmlentities($_SERVER['PHP_SELF']);
  45. }else{
  46. $this->href=$href;
  47. }
  48. $this->construct_Pages();
  49. }
  50. /**
  51. * getPages 返回页码数组
  52. * @return array 一维数组 键为页码 值为链接
  53. */
  54. public function getPages(){
  55. return $this->page_arr;
  56. }
  57. /**
  58. * showPages 返回生成好的页码
  59. * @param int $style 样式
  60. * @return string 生成好的页码
  61. */
  62. public function showPages($style=1){
  63. $func='pageStyle'.$style;
  64. return $this->$func();
  65. }
  66. /**
  67. * pageStyle1 分页样式(可参照这个添加自定义样式 例如pageStyle2())
  68. * 样式 共45条记录,每页显示10条,当前第1/4页 [首页] [上页] [1] [2] [3] .. [下页] [尾页]
  69. * @return string
  70. */
  71. protected function pageStyle1(){
  72. /* 构造普通模式的分页
  73. 共4523条记录,每页显示10条,当前第1/453页 [首页] [上页] [1] [2] [3] .. [下页] [尾页]
  74. */
  75. $pageStr='共'.$this->count.'条记录,每页显示'.$this->subPages.'条';
  76. $pageStr.='当前第'.$this->currPage.'/'.$this->countPages.'页 ';
  77. $_GET['page'] = 1;
  78. $pageStr.='<span>[<a href="'.$this->href.'?'.http_build_query($_GET).'">首页</a>] </span>';
  79. //如果当前页不是第一页就显示上页
  80. if($this->currPage>1){
  81. $_GET['page'] = $this->currPage-1;
  82. $pageStr.='<span>[<a href="'.$this->href.'?'.http_build_query($_GET).'">上页</a>] </span>';
  83. }
  84. foreach ($this->page_arr as $k => $v) {
  85. $_GET['page'] = $k;
  86. $pageStr.='<span>[<a href="'.$v.'">'.$k.'</a>] </span>';
  87. }
  88. //如果当前页小于总页数就显示下一页
  89. if($this->currPage<$this->countPages){
  90. $_GET['page'] = $this->currPage+1;
  91. $pageStr.='<span>[<a href="'.$this->href.'?'.http_build_query($_GET).'">下页</a>] </span>';
  92. }
  93. $_GET['page'] = $this->countPages;
  94. $pageStr.='<span>[<a href="'.$this->href.'?'.http_build_query($_GET).'">尾页</a>] </span>';
  95. return $pageStr;
  96. }
  97. /**
  98. * construct_Pages 生成页码数组
  99. * 键为页码,值为链接
  100. * $this->page_arr=Array(
  101. * [1] => index.php?page=1
  102. * [2] => index.php?page=2
  103. * [3] => index.php?page=3
  104. * ......)
  105. */
  106. protected function construct_Pages(){
  107. //计算总页数
  108. $this->countPages=ceil($this->count/$this->subPages);
  109. //根据当前页计算前后页数
  110. $leftPage_num=floor($this->showPages/2);
  111. $rightPage_num=$this->showPages-$leftPage_num;
  112. //左边显示数为当前页减左边该显示的数 例如总显示7页 当前页是5 左边最小为5-3 右边为5+3
  113. $left=$this->currPage-$leftPage_num;
  114. $left=max($left,1); //左边最小不能小于1
  115. $right=$left+$this->showPages-1; //左边加显示页数减1就是右边显示数
  116. $right=min($right,$this->countPages); //右边最大不能大于总页数
  117. $left=max($right-$this->showPages+1,1); //确定右边再计算左边,必须二次计算
  118. for ($i=$left; $i <= $right; $i++) {
  119. $_GET['page'] = $i;
  120. $this->page_arr[$i]=$this->href.'?'.http_build_query($_GET);
  121. }
  122. }
  123. }

2. demo.php

  1. <?php
  2. /**
  3. * 分页类demo
  4. * Be the best of whatever you are!
  5. *
  6. * @author: Dzer<358654744@qq.com>
  7. * @version: 2014-12-28 17:38:23
  8. * @Last Modified time: 2014-12-28 18:08:28
  9. */
  10. header("content-type:text/html;charset=utf8");
  11. include('./Page.class.php'); //引入类
  12. //$p=new Page(总页数,显示页数,当前页码,每页显示条数,[链接]);
  13. //连接不设置则为当前链接
  14. $page=isset($_GET['page']) ? $_GET['page'] : 1;
  15. $p=new Page(100,7,$page,8);
  16. //生成一个页码数组(键为页码,值为链接)
  17. echo "<pre>";
  18. print_r($p->getPages());
  19. //生成一个页码样式(可添加自定义样式)
  20. //样式 共45条记录,每页显示10条,当前第1/4页 [首页] [上页] [1] [2] [3] .. [下页] [尾页]
  21. echo $p->showPages(1);