完美的php分页类

这篇文章主要分享了一段完美的php分页类,具有一定的参考价值,感兴趣的小伙伴们可以参考一下,本文实例为大家分享了php分页类的具体代码,供大家参考,具体内容如下

  1. <?php
  2. /**
  3. file: page.class.php
  4. 完美分页类 Page
  5. */
  6. class Page {
  7. private $total; //数据表中总记录数
  8. private $listRows; //每页显示行数
  9. private $limit; //SQL语句使用limit从句,限制获取记录个数
  10. private $uri; //自动获取url的请求地址
  11. private $pageNum; //总页数
  12. private $page; //当前页
  13. private $config = array(
  14. 'head' => "条记录",
  15. 'prev' => "上一页",
  16. 'next' => "下一页",
  17. 'first'=> "首页",
  18. 'last' => "末页"
  19. );
  20. //在分页信息中显示内容,可以自己通过set()方法设置
  21. private $listNum = 10; //默认分页列表显示的个数
  22. /**
  23. 构造方法,可以设置分页类的属性
  24. @param int $total 计算分页的总记录数
  25. @param int $listRows 可选的,设置每页需要显示的记录数,默认为25条
  26. @param mixed $query 可选的,为向目标页面传递参数,可以是数组,也可以是查询字符串格式
  27. @param bool $ord 可选的,默认值为true, 页面从第一页开始显示,false则为最后一页
  28. */
  29. public function __construct($total, $listRows=25, $query="", $ord=true){
  30. $this->total = $total;
  31. $this->listRows = $listRows;
  32. $this->uri = $this->getUri($query);
  33. $this->pageNum = ceil($this->total / $this->listRows);
  34. /*以下判断用来设置当前面*/
  35. if(!emptyempty($_GET["page"])) {
  36. $page = $_GET["page"];
  37. }else{
  38. if($ord)
  39. $page = 1;
  40. else
  41. $page = $this->pageNum;
  42. }
  43. if($total > 0) {
  44. if(preg_match('/\D/', $page) ){
  45. $this->page = 1;
  46. }else{
  47. $this->page = $page;
  48. }
  49. }else{
  50. $this->page = 0;
  51. }
  52. $this->limit = "LIMIT ".$this->setLimit();
  53. }
  54. /**
  55. 用于设置显示分页的信息,可以进行连贯操作
  56. @param string $param 是成员属性数组config的下标
  57. @param string $value 用于设置config下标对应的元素值
  58. @return object 返回本对象自己$this, 用于连惯操作
  59. */
  60. function set($param, $value){
  61. if(array_key_exists($param, $this->config)){
  62. $this->config[$param] = $value;
  63. }
  64. return $this;
  65. }
  66. /* 不是直接去调用,通过该方法,可以使用在对象外部直接获取私有成员属性limit和page的值 */
  67. function __get($args){
  68. if($args == "limit" || $args == "page")
  69. return $this->$args;
  70. else
  71. return null;
  72. }
  73. /**
  74. 按指定的格式输出分页
  75. @param int 0-7的数字分别作为参数,用于自定义输出分页结构和调整结构的顺序,默认输出全部结构
  76. @return string 分页信息内容
  77. */
  78. function fpage(){
  79. $arr = func_get_args();
  80. $html[0] = "<span class='p1'>&nbsp;共<b> {$this->total} </b>{$this->config["head"]}&nbsp;</span>";
  81. $html[1] = "&nbsp;本页 <b>".$this->disnum()."</b> 条&nbsp;";
  82. $html[2] = "&nbsp;本页从 <b>{$this->start()}-{$this->end()}</b> 条&nbsp;";
  83. $html[3] = "&nbsp;<b>{$this->page}/{$this->pageNum}</b>页&nbsp;";
  84. $html[4] = $this->firstprev();
  85. $html[5] = $this->pageList();
  86. $html[6] = $this->nextlast();
  87. $html[7] = $this->goPage();
  88. $fpage = '<div \5B8B\4F53\',san-serif;">';
  89. if(count($arr) < 1)
  90. $arr = array(0, 1,2,3,4,5,6,7);
  91. for($i = 0; $i < count($arr); $i++)
  92. $fpage .= $html[$arr[$i]];
  93. $fpage .= '</div>';
  94. return $fpage;
  95. }
  96. /* 在对象内部使用的私有方法,*/
  97. private function setLimit(){
  98. if($this->page > 0)
  99. return ($this->page-1)*$this->listRows.", {$this->listRows}";
  100. else
  101. return 0;
  102. }
  103. /* 在对象内部使用的私有方法,用于自动获取访问的当前URL */
  104. private function getUri($query){
  105. $request_uri = $_SERVER["REQUEST_URI"];
  106. $url = strstr($request_uri,'?') ? $request_uri : $request_uri.'?';
  107. if(is_array($query))
  108. $url .= http_build_query($query);
  109. else if($query != "")
  110. $url .= "&".trim($query, "?&");
  111. $arr = parse_url($url);
  112. if(isset($arr["query"])){
  113. parse_str($arr["query"], $arrs);
  114. unset($arrs["page"]);
  115. $url = $arr["path"].'?'.http_build_query($arrs);
  116. }
  117. if(strstr($url, '?')) {
  118. if(substr($url, -1)!='?')
  119. $url = $url.'&';
  120. }else{
  121. $url = $url.'?';
  122. }
  123. return $url;
  124. }
  125. /* 在对象内部使用的私有方法,用于获取当前页开始的记录数 */
  126. private function start(){
  127. if($this->total == 0)
  128. return 0;
  129. else
  130. return ($this->page-1) * $this->listRows+1;
  131. }
  132. /* 在对象内部使用的私有方法,用于获取当前页结束的记录数 */
  133. private function end(){
  134. return min($this->page * $this->listRows, $this->total);
  135. }
  136. /* 在对象内部使用的私有方法,用于获取上一页和首页的操作信息 */
  137. private function firstprev(){
  138. if($this->page > 1) {
  139. $str = "&nbsp;<a href='{$this->uri}page=1'>{$this->config["first"]}</a>&nbsp;";
  140. $str .= "<a href='{$this->uri}page=".($this->page-1)."'>{$this->config["prev"]}</a>&nbsp;";
  141. return $str;
  142. }
  143. }
  144. /* 在对象内部使用的私有方法,用于获取页数列表信息 */
  145. private function pageList(){
  146. $linkPage = "&nbsp;<b>";
  147. $inum = floor($this->listNum/2);
  148. /*当前页前面的列表 */
  149. for($i = $inum; $i >= 1; $i--){
  150. $page = $this->page-$i;
  151. if($page >= 1)
  152. $linkPage .= "<a href='{$this->uri}page={$page}'>{$page}</a>&nbsp;";
  153. }
  154. /*当前页的信息 */
  155. if($this->pageNum > 1)
  156. $linkPage .= "<span >{$this->page}</span>&nbsp;";
  157. /*当前页后面的列表 */
  158. for($i=1; $i <= $inum; $i++){
  159. $page = $this->page+$i;
  160. if($page <= $this->pageNum)
  161. $linkPage .= "<a href='{$this->uri}page={$page}'>{$page}</a>&nbsp;";
  162. else
  163. break;
  164. }
  165. $linkPage .= '</b>';
  166. return $linkPage;
  167. }
  168. /* 在对象内部使用的私有方法,获取下一页和尾页的操作信息 */
  169. private function nextlast(){
  170. if($this->page != $this->pageNum) {
  171. $str = "&nbsp;<a href='{$this->uri}page=".($this->page+1)."'>{$this->config["next"]}</a>&nbsp;";
  172. $str .= "&nbsp;<a href='{$this->uri}page=".($this->pageNum)."'>{$this->config["last"]}</a>&nbsp;";
  173. return $str;
  174. }
  175. }
  176. /* 在对象内部使用的私有方法,用于显示和处理表单跳转页面 */
  177. private function goPage(){
  178. if($this->pageNum > 1) {
  179. return '&nbsp;<input type="text" onkeydown="javascript:if(event.keyCode==13){var page=(this.value>'.$this->pageNum.')?'.$this->pageNum.':this.value;location=\''.$this->uri.'page=\'+page+\'\'}" value="'.$this->page.'"><input type="button" value="GO" onclick="javascript:var page=(this.previousSibling.value>'.$this->pageNum.')?'.$this->pageNum.':this.previousSibling.value;location=\''.$this->uri.'page=\'+page+\'\'">&nbsp;';
  180. }
  181. }
  182. /* 在对象内部使用的私有方法,用于获取本页显示的记录条数 */
  183. private function disnum(){
  184. if($this->total > 0){
  185. return $this->end()-$this->start()+1;
  186. }else{
  187. return 0;
  188. }
  189. }
  190. }