Page_home.class.php 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. <?php
  2. class Page_home 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. function is_mobile() {
  51. $user_agent = $_SERVER['HTTP_USER_AGENT'];
  52. $mobile_agents = Array("240x320","acer","acoon","acs-","abacho","ahong","airness","alcatel","amoi","android","anywhereyougo.com","applewebkit/525","applewebkit/532","asus","audio","au-mic","avantogo","becker","benq","bilbo","bird","blackberry","blazer","bleu","cdm-","compal","coolpad","danger","dbtel","dopod","elaine","eric","etouch","fly ","fly_","fly-","go.web","goodaccess","gradiente","grundig","haier","hedy","hitachi","htc","huawei","hutchison","inno","ipaq","ipod","jbrowser","kddi","kgt","kwc","lenovo","lg ","lg2","lg3","lg4","lg5","lg7","lg8","lg9","lg-","lge-","lge9","longcos","maemo","mercator","meridian","micromax","midp","mini","mitsu","mmm","mmp","mot-","moto","nec-","netfront","newgen","nexian","nf-browser","nintendo","nitro","nokia","nook","novarra","obigo","palm","panasonic","pantech","philips","phone","pg-","playstation","pocket","pt-","qc-","qtek","rover","sagem","sama","samu","sanyo","samsung","sch-","scooter","sec-","sendo","sgh-","sharp","siemens","sie-","softbank","sony","spice","sprint","spv","symbian","tablet","talkabout","tcl-","teleca","telit","tianyu","tim-","toshiba","tsm","up.browser","utec","utstar","verykool","virgin","vk-","voda","voxtel","vx","wap","wellco","wig browser","wii","windows ce","wireless","xda","xde","zte");
  53. $is_mobile = false;
  54. foreach ($mobile_agents as $device) {
  55. if (stristr($user_agent, $device)) {
  56. $is_mobile = true;
  57. break;
  58. }
  59. }
  60. return $is_mobile;
  61. }
  62. public function show(){
  63. if($this->totalRows == 0 OR $this->listRows == 0 OR $this->totalPages <= 1){
  64. return '';
  65. }
  66. $urlrule = str_replace('%7B%24page%7D','{$page}',$this->urlrule); //urldecode
  67. if(!$urlrule){
  68. $p = C('VAR_PAGE');
  69. $nowCoolPage = ceil($this->nowPage/$this->rollPage);
  70. $url = $_SERVER['REQUEST_URI'].(strpos($_SERVER['REQUEST_URI'],'?')?'':"?").$this->parameter;
  71. $parse = parse_url($url);
  72. if(isset($parse['query'])) {
  73. parse_str($parse['query'],$params);
  74. unset($params[$p]);
  75. $urlrule = $parse['path'].'?'.http_build_query($params);
  76. }
  77. $urlrule = $urlrule."&".$p.'={$page}';
  78. }
  79. $pre_page = $this->nowPage-1;
  80. $next_page = $this->nowPage +1;
  81. if($this->nowPage >=$this->totalPages){
  82. $next_page = $this->nowPage = $this->totalPages;
  83. }
  84. if($this->nowPage <= 1){
  85. $pre_page = $this->nowPage = 1;
  86. }
  87. if(is_mobile()){
  88. $output = '<div class="ajaxpage">';
  89. $output .= '<a href="'.$this->pageurl($urlrule, $next_page,$this->parameter).'" title="" style="display:none;" id="page_ajax"></a>';
  90. $output .= '<a href="'.$this->pageurl($urlrule, $this->nowPage ,$this->parameter).'" title="" style="display:none;" id="page_ajax_now"></a>';
  91. $output .='</div>';
  92. }else{
  93. $output = '';
  94. $output .= '<a href="'.$this->pageurl($urlrule, $pre_page,$this->parameter).'">上一页</a>';
  95. $show_nums = $this->rollPage*2+1;// 显示页码的个数
  96. if($this->totalPages <= $show_nums){
  97. for($i = 1;$i<=$this->totalPages;$i++){
  98. if($i == $this->nowPage){
  99. $output .= '<span>'.$i.'</span>';
  100. }else{
  101. $output .= '<a href="'.$this->pageurl($urlrule,$i,$this->parameter).'">'.$i.'</a>';
  102. }
  103. }
  104. }else{
  105. if($this->nowPage < (1+$this->rollPage)){
  106. for($i = 1;$i<=$show_nums;$i++){
  107. if($i == $this->nowPage){
  108. $output .= '<span>'.$i.'</span>';
  109. }else{
  110. $output .= '<a href="'.$this->pageurl($urlrule,$i,$this->parameter).'">'.$i.'</a>';
  111. }
  112. }
  113. }else if($this->nowPage >= ($this->totalPages - $this->rollPage)){
  114. for($i = $this->totalPages - $show_nums ; $i <= $this->totalPages ; $i++){
  115. if($i == $this->nowPage){
  116. $output .= '<span>'.$i.'</span>';
  117. }else{
  118. $output .= '<a href="'.$this->pageurl($urlrule,$i,$this->parameter).'">'.$i.'</a>';
  119. }
  120. }
  121. }else{
  122. $start_page = $this->nowPage - $this->rollPage;
  123. $end_page = $this->nowPage + $this->rollPage;
  124. for($i = $start_page ; $i<=$end_page ; $i++){
  125. if($i == $this->nowPage){
  126. $output .= '<span>'.$i.'</span>';
  127. }else{
  128. $output .= '<a href="'.$this->pageurl($urlrule,$i,$this->parameter).'">'.$i.'</a>';
  129. }
  130. }
  131. }
  132. }
  133. $output .='<a href="'.$this->pageurl($urlrule,$next_page,$this->parameter).'">下一页</a>';
  134. }
  135. return $output;
  136. }
  137. public function pageurl($urlrule, $page, $array = array())
  138. {
  139. @extract($array, EXTR_SKIP);
  140. if(is_array($urlrule))
  141. {
  142. //$urlrules = explode('|', $urlrule);
  143. $urlrule = $page < 2 ? $urlrule[0] : $urlrule[1];
  144. }
  145. $url = str_replace('{$page}', $page, $urlrule);
  146. return $url;
  147. }
  148. }
  149. ?>