php页码形式分页函数支持静态化地址及ajax分页

这篇文章主要介绍了php页码形式分页函数,此分页支持静态化地址分页和无链接地址时的ajax分页,需要的朋友可以参考下。

之前每次遇到分页,总是得自己写,觉得挺繁琐的,所以本着通用的原则,写了一个分页的方法,特此记录。

目前此分页支持静态化地址分页和无链接地址时的ajax分页(但是js得自己写):

支持的静态地址如下:www.example.com/xxx-xxx-p1-xxxx-xx.html

其他形式静态化需根据自己情况进行改写。

支持ajax方式分页时,$link参数为空,但提供了pid和optype,其中pid用于获取该页码页数,optype用于一个页面存在多个分页时区分当前触发动作属于哪个分页逻辑,代码如下:

  1. /**********************************************************
  2. *
  3. * 获取页码
  4. *
  5. **********************************************************
  6. *
  7. * @params string $link 链接地址(链接为空时可以用ajax翻页)
  8. *
  9. * @params int $intPage 当前页数
  10. *
  11. * @params int $intTotal 总页数
  12. *
  13. * @params int $intSize 要显示的页数个数
  14. *
  15. * @params string $type 链接种类(多个翻页用于区分翻页区域)
  16. *
  17. **********************************************************
  18. *
  19. * @return array
  20. */
  21. private function formatPage($link="",$intPage,$intTotal,$intSize=3,$type="")
  22. {
  23. $strPage = '<div class="g_serpage clearfix">';
  24. if($intTotal > 0)
  25. {
  26. if($intPage > 1)
  27. $strPage .= $link!=''?'<a href="'.preg_replace("/-p(\d+)/","p".($intPage-1),$link).'"><<上一页</a>':'<a optype="'.$type.'" p.($intPage-1).'" href="javascript:void(0)"><<上一页</a>';
  28. else
  29. $strPage .= '<a href="javascript:void(0)"><<上一页</a>';
  30. //窗口宽度大于等于总页数
  31. if( ($intSize+2) >= $intTotal )
  32. {
  33. for($i=1;$i<=$intTotal;$i++)
  34. {
  35. $strClass = $i == $intPage ? 'class="g_serpagcur"' : "";
  36. $strPage .= $link!=''?'<a href="'.preg_replace("/-p(\d+)/","p".$i,$link).'" '.$strClass.'>'.$i.'</a>':'<a optype="'.$type.'" p.$i.'" href="javascript:void(0)" '.$strClass.'>'.$i.'</a>';
  37. }
  38. }
  39. else
  40. {
  41. if($intPage < ceil($intSize/2))
  42. {
  43. for($i=1;$i<=$intSize;$i++)
  44. {
  45. $strClass = $i == $intPage ? 'class="g_serpagcur"' : "";
  46. $strPage .= $link!=''?'<a href="'.preg_replace("/-p(\d+)/","p".$i,$link).'" '.$strClass.'>'.$i.'</a>':'<a optype="'.$type.'" p.$i.'" href="javascript:void(0)" '.$strClass.'>'.$i.'</a>';
  47. }
  48. $strPage .= $link!=''?'<a class="gpage_nobor" >…</a><a href="'.preg_replace("/-p(\d+)/","p".$intTotal,$link).'" >'.$intTotal.'</a>':'<a class="gpage_nobor" >…</a><a optype="'.$type.'" p.$intTotal.'" href="javascript:void(0)" >'.$intTotal.'</a>';
  49. }
  50. elseif(($intTotal-$intPage) < ceil($intSize/2))
  51. {
  52. $strPage .= $link!=''?'<a href="'.preg_replace("/-p(\d+)/","p1",$link).'">1</a><a class="gpage_nobor" >…</a>':'<a optype="'.$type.'" p href="javascript:void(0)">1</a><a class="gpage_nobor" >…</a>';
  53. for($i = ($intTotal + 1 - $intSize);$i++;$i<=$intTotal)
  54. {
  55. $strClass = $i == $intPage ? 'class="g_serpagcur"' : "";
  56. $strPage .= $link!=''?'<a href="'.preg_replace("/-p(\d+)/","p".$i,$link).'" '.$strClass.'>'.$i.'</a>':'<a optype="'.$type.'" p.$i.'" href="javascript:void(0)" '.$strClass.'>'.$i.'</a>';
  57. }
  58. }
  59. else
  60. {
  61. $intOffset = floor($intSize/2);
  62. $strPage .= $link!=''?'<a href="'.preg_replace("/-p(\d+)/","p1",$link).'">1</a>':'<a optype="'.$type.'" p href="javascript:void(0)">1</a>';
  63. if( ($intPage - $intOffset) > 2)
  64. {
  65. $strPage .= '<a class="gpage_nobor" >…</a>';
  66. }
  67. for($i=(($intPage - $intOffset)<=1?2:($intPage - $intOffset));$i<=(($intPage + $intOffset)>=$intTotal?($intTotal-1):($intPage + $intOffset));$i++)
  68. {
  69. $strClass = $i == $intPage ? 'class="g_serpagcur"' : "";
  70. $strPage .= $link!=''?'<a href="'.preg_replace("/-p(\d+)/","p".$i,$link).'" '.$strClass.'>'.$i.'</a>':'<a optype="'.$type.'" p.$i.'" href="javascript:void(0)" '.$strClass.'>'.$i.'</a>';
  71. }
  72. if( ($intPage - $intOffset) < ($intTotal - 1))
  73. {
  74. $strPage .= '<a class="gpage_nobor" >…</a>';
  75. }
  76. $strPage .= $link!=''?'<a href="'.preg_replace("/-p(\d+)/","p".$intTotal,$link).'">'.$intTotal.'</a>':'<a optype="'.$type.'" p.$intTotal.'" href="javascript:void(0)">'.$intTotal.'</a>';
  77. }
  78. }
  79. if($intPage < $intTotal)
  80. {
  81. $strPage .= $link!=''?'<a href="'.preg_replace("/-p(\d+)/","p".($intPage+1),$link).'">下一页>></a>':'<a optype="'.$type.'" p.($intPage+1).'" href="javascript:void(0)">下一页>></a>';
  82. }
  83. else
  84. {
  85. $strPage .= '<a href="javascript:void(0)">下一页>></a>';
  86. }
  87. }
  88. $strPage .= "</div>";
  89. return $strPage;
  90. }