Page.class.php 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. <?php
  2. class Page extends Think {
  3. // 起始行数
  4. public $firstRow ;
  5. // 列表每页显示行数
  6. public $listRows ;
  7. // 页数跳转时要带的参数
  8. public $parameter ;
  9. // 分页总页面数
  10. public $totalPages ;
  11. // 总行数
  12. public $totalRows ;
  13. // 当前页数
  14. public $nowPage ;
  15. // 分页的栏的总页数
  16. public $coolPages ;
  17. // 分页栏每页显示的页数
  18. public $rollPage ;
  19. // 分页url定制
  20. public $urlrule;
  21. /**
  22. +----------------------------------------------------------
  23. * 架构函数
  24. +----------------------------------------------------------
  25. * @access public
  26. +----------------------------------------------------------
  27. * @param array $totalRows 总的记录数
  28. * @param array $listRows 每页显示记录数
  29. * @param array $parameter 分页跳转的参数
  30. +----------------------------------------------------------
  31. */
  32. public function __construct($totalRows,$listRows,$p='') {
  33. $this->totalRows = $totalRows;
  34. $this->parameter = $parameter;
  35. $this->rollPage = C('PAGE_ROLLPAGE') ? C('PAGE_ROLLPAGE') : 2;
  36. $this->listRows = !empty($listRows)?$listRows:C('PAGE_LISTROWS');
  37. $this->totalPages = ceil($this->totalRows/$this->listRows); //总页数
  38. if (!define('PAGESTOTAL')) define('PAGESTOTAL', $this->totalPages);
  39. $this->coolPages = ceil($this->totalPages/$this->rollPage);
  40. if($p){
  41. $this->nowPage =$p;
  42. }else{
  43. $this->nowPage = !empty($_GET[C('VAR_PAGE')])?intval($_GET[C('VAR_PAGE')]):1;
  44. }
  45. if(!empty($this->totalPages) && $this->nowPage>$this->totalPages) {
  46. $this->nowPage = $this->totalPages;
  47. }
  48. $this->firstRow = $this->listRows*($this->nowPage-1);
  49. }
  50. public function show(){
  51. if($this->totalRows == 0 OR $this->listRows == 0 OR $this->totalPages <= 1){
  52. return '';
  53. }
  54. $urlrule = str_replace('%7B%24page%7D','{$page}',$this->urlrule); //urldecode
  55. if(!$urlrule){
  56. $p = C('VAR_PAGE');
  57. $nowCoolPage = ceil($this->nowPage/$this->rollPage);
  58. $url = $_SERVER['REQUEST_URI'].(strpos($_SERVER['REQUEST_URI'],'?')?'':"?").$this->parameter;
  59. $parse = parse_url($url);
  60. if(isset($parse['query'])) {
  61. parse_str($parse['query'],$params);
  62. unset($params[$p]);
  63. $urlrule = $parse['path'].'?'.http_build_query($params);
  64. }
  65. $urlrule = $urlrule."&".$p.'={$page}';
  66. }
  67. $pre_page = $this->nowPage-1;
  68. $next_page = $this->nowPage +1;
  69. if($this->nowPage >=$this->totalPages){
  70. $next_page = $this->nowPage = $this->totalPages;
  71. }
  72. if($this->nowPage <= 1){
  73. $pre_page = $this->nowPage = 1;
  74. }
  75. $output = '';
  76. $output .= '<a class="a1">'.$this->totalRows.L('page_item').'</a>';
  77. $output .= '<a href="'.$this->pageurl($urlrule, 1,$this->parameter).'">'.L('first_page').'</a>';
  78. $output .= '<a href="'.$this->pageurl($urlrule, $pre_page,$this->parameter).'">'.L('previous').'</a>';
  79. $show_nums = $this->rollPage*2+1;// 显示页码的个数
  80. if($this->totalPages <= $show_nums){
  81. for($i = 1;$i<=$this->totalPages;$i++){
  82. if($i == $this->nowPage){
  83. $output .= '<span>'.$i.'</span>';
  84. }else{
  85. $output .= '<a href="'.$this->pageurl($urlrule,$i,$this->parameter).'">'.$i.'</a>';
  86. }
  87. }
  88. }else{
  89. if($this->nowPage < (1+$this->rollPage)){
  90. for($i = 1;$i<=$show_nums;$i++){
  91. if($i == $this->nowPage){
  92. $output .= '<span>'.$i.'</span>';
  93. }else{
  94. $output .= '<a href="'.$this->pageurl($urlrule,$i,$this->parameter).'">'.$i.'</a>';
  95. }
  96. }
  97. }else if($this->nowPage >= ($this->totalPages - $this->rollPage)){
  98. for($i = $this->totalPages - $show_nums ; $i <= $this->totalPages ; $i++){
  99. if($i == $this->nowPage){
  100. $output .= '<span>'.$i.'</span>';
  101. }else{
  102. $output .= '<a href="'.$this->pageurl($urlrule,$i,$this->parameter).'">'.$i.'</a>';
  103. }
  104. }
  105. }else{
  106. $start_page = $this->nowPage - $this->rollPage;
  107. $end_page = $this->nowPage + $this->rollPage;
  108. for($i = $start_page ; $i<=$end_page ; $i++){
  109. if($i == $this->nowPage){
  110. $output .= '<span>'.$i.'</span>';
  111. }else{
  112. $output .= '<a href="'.$this->pageurl($urlrule,$i,$this->parameter).'">'.$i.'</a>';
  113. }
  114. }
  115. }
  116. }
  117. $output .='<a href="'.$this->pageurl($urlrule,$next_page,$this->parameter).'">'.L('next')."</a>";
  118. $output .='<a href="'.$this->pageurl($urlrule,$this->totalPages,$this->parameter).'">'.L('Last_page')."</a>";
  119. return $output;
  120. }
  121. public function pageurl($urlrule, $page, $array = array())
  122. {
  123. @extract($array, EXTR_SKIP);
  124. if(is_array($urlrule))
  125. {
  126. //$urlrules = explode('|', $urlrule);
  127. $urlrule = $page < 2 ? $urlrule[0] : $urlrule[1];
  128. }
  129. $url = str_replace('{$page}', $page, $urlrule);
  130. return $url;
  131. }
  132. }
  133. ?>