当前位置:Gxlcms > PHP教程 > 一个php分页类代码(附效果图)

一个php分页类代码(附效果图)

时间:2021-07-01 10:21:17 帮助过:2人阅读

  1. /**

  2. * 简单分页类
  3. * Page.class.php
  4. */
  5. class Page
  6. {
  7. private $page_num; //每页显示的信息条数
  8. private $page_all_no; //信息的总条数
  9. private $page_len; //显示多少个页码
  10. private $page; //当前的页数
  11. private $page_max; //页数最大值
  12. private $page_no_array; //页数的数组
  13. public $start_num; //查询语句limit的起始值
  14. private $page_change; //在第几个页码开始 页码递增
  15. private $URL; //获取当前页面的URL

  16. public function __construct($page_all_no, $page_num=5, $page_len=5)

  17. {
  18. $this->page_all_no = intval($page_all_no);
  19. $this->page_num = intval($page_num);
  20. $this->page_len = intval($page_len);
  21. $this->URL = $_SERVER['REQUEST_URI'];
  22. $this->max_page(); //得到页数的最大值
  23. $this->page_no(); //得到当前页数
  24. $this->page_no_array(); //页数数组
  25. $this->start_num(); //得到sql语句中limit的起始值
  26. $this->change_page(); //得到递增开始的页码$this->page_change
  27. $this->getURL(); //得到当前的URL并处理返回
  28. }

  29. private function isArray($str,$str_self)

  30. {
  31. if(!is_array($str)) throw new Exception("$str_self must be an Array type");
  32. }

  33. private function page_no()

  34. {
  35. $this->page = isset($_GET['page']) ? $_GET['page'] : 1;
  36. if(isset($_GET['page']) && $_GET['page'] < 1) $this->page = 1;
  37. if(isset($_GET['page']) && $_GET['page'] > $this->page_max) $this->page = $this->page_max;
  38. return $this->page;
  39. }

  40. private function max_page()

  41. {
  42. return $this->page_max = $this->page_all_no <= 0 ? 1 : ceil($this->page_all_no/$this->page_num);
  43. }

  44. private function change_page()

  45. {
  46. return $this->page_change = ceil($this->page_len / 2);
  47. }

  48. private function page_no_array()

  49. {
  50. return $this->page_no_array = range(1, $this->page_max);
  51. }

  52. private function start_num()

  53. {
  54. return $this->start_num = $this->page_num * ($this->page - 1);
  55. }

  56. private function getURL()

  57. {
  58. if(!empty($_SERVER['argc']) ? $_SERVER['argc'] == 0 : strpos($_SERVER['REQUEST_URI'], '?') === false)
  59. {
  60. $this->URL = $this->URL.'?';
  61. }else{
  62. $url_a = "/\?page=[0-9]{1,}/";
  63. $url_b = "/&page=[0-9]{1,}/";
  64. ereg("\?page=[0-9]{1,}", $this->URL) ? $this->URL = preg_replace($url_a, "?", $this->URL):
  65. ereg("&page=[0-9]{1,}", $this->URL) ? $this->URL = preg_replace($url_b, "&", $this->URL):$this->URL = $this->URL.'&';
  66. }
  67. return $this->URL;
  68. }

  69. private function header_info($total_data_modifier='总数:', $total_page_modifier=' 总页数:', $current_page_modifier=' 当前页:', $header_info_modifier='', $header_data_color = 'red'){

  70. if($this->page_max != 1 && $this->page_all_no != 0)
  71. {
  72. $header_info = $total_data_modifier.''.$this->page_all_no.'';
  73. $header_info .= $total_page_modifier.''.$this->page_max.'';
  74. $header_info .= $current_page_modifier.''.$this->page.' '."\r\n";
  75. if(!empty($header_info_modifier)) $header_info = $header_info_modifier.$header_info;
  76. return $header_info;
  77. }else{
  78. return NULL;
  79. }
  80. }

  81. private function first($first_format = '第一页')

  82. {
  83. return $this->page == 1 ? $first_format."\r\n" : 'URL,0,strlen($this->URL)-1).'">'.$first_format.''."\r\n";
  84. }

  85. private function last($last_format = '上一页')

  86. {
  87. if($this->page == 1) return $last_format."\r\n";
  88. return $this->page-1 == 1 ? 'URL,0,strlen($this->URL)-1).'">'.$last_format.''."\r\n" : 'URL.'page='.($this->page - 1).'">'.$last_format.''."\r\n";
  89. }

  90. private function page_num_format($separator=' ', $left_modifier='[', $right_modifier=']', $both_sides=false, $current_page_color = 'red')

  91. {
  92. empty($separator) ? $separator = ' ' : $separator;
  93. $page_array = '';
  94. if($this->page_max <= $this->page_len)
  95. {
  96. for ($i=0; $i < $this->page_max; $i++)
  97. {
  98. if($this->page_no_array[$i] == $this->page)
  99. {
  100. $the[$i] = ''.$left_modifier.$this->page_no_array[$i].$right_modifier.''."\r\n";
  101. }else{
  102. if($i == 0)
  103. {
  104. $page_one = substr($this->URL,0,strlen($this->URL)-1);
  105. $the[$i] = ''.$left_modifier.$this->page_no_array[$i].$right_modifier.''."\r\n";
  106. }else{
  107. $the[$i] = 'URL.'page='.$this->page_no_array[$i].'">'.$left_modifier.$this->page_no_array[$i].$right_modifier.''."\r\n";
  108. }
  109. }
  110. $page_array .= $the[$i].$separator;
  111. }
  112. if($both_sides === false)
  113. {
  114. $page_array = substr($page_array,0,strrpos($page_array, $separator));
  115. }elseif ($both_sides === true){
  116. $page_array = $separator.$page_array;
  117. }else{
  118. throw new Exception('ERROR: $both_sides must be a boolean type.');
  119. }
  120. }else{
  121. if($this->page <= $this->page_change)
  122. {
  123. $i_start = 0;
  124. }else{
  125. $i_start = $this->page - $this->page_change;
  126. //如果最大的页码已显示,那么开始页就不会在递增
  127. if($i_start >= $this->page_max - $this->page_len){
  128. $i_start = $this->page_max - $this->page_len;
  129. }
  130. }
  131. $i_end = ($i_start+$this->page_len) - 1;
  132. for ($i = $i_start; $i <= $i_end; $i++)
  133. {
  134. if($this->page_no_array[$i] == $this->page)
  135. {
  136. $the[$i] = ''.$left_modifier.$this->page_no_array[$i].$right_modifier.''."\r\n";
  137. }else{
  138. if($i == 0)
  139. {
  140. $page_one = substr($this->URL,0,strlen($this->URL)-1);
  141. $the[$i] = ''.$left_modifier.$this->page_no_array[$i].$right_modifier.''."\r\n";
  142. }else{
  143. $the[$i] = 'URL.'page='.$this->page_no_array[$i].'">'.$left_modifier.$this->page_no_array[$i].$right_modifier.''."\r\n";
  144. }
  145. }
  146. $page_array .= $the[$i].$separator;
  147. }
  148. if($both_sides === false)
  149. {
  150. $page_array = substr($page_array,0,strrpos($page_array, $separator));
  151. }elseif ($both_sides === true){
  152. $page_array = $separator.$page_array;
  153. }else{
  154. throw new Exception('ERROR: $both_sides must be a boolean type.');
  155. }
  156. }
  157. return $page_array;
  158. }

  159. private function next($next_format = '下一页')

  160. {
  161. if($this->page >= $this->page_max) return $next_format."\r\n";
  162. return 'URL.'page='.($this->page + 1).'">'.$next_format.''."\r\n";
  163. }

  164. private function end($end_format = '最后一页')

  165. {
  166. return $this->page >= $this->page_max ? $end_format."\r\n" : 'URL.'page='.$this->page_max.'">'.$end_format.''."\r\n";
  167. }

  168. public function select_page($target='self', $select_page_mode='PMA', $value_left_modifier='', $value_right_modifier='')

  169. {
  170. if($this->page_max != 1 && $this->page_all_no != 0)
  171. {
  172. if($select_page_mode === 'NORMAL')
  173. {
  174. $page_no_array = $this->page_no_array;
  175. }elseif($select_page_mode === 'PMA'){
  176. $page_no_array = $this->PMA_page_no_array();
  177. }else{
  178. throw new Exception('$select_page_mode is unknown mode');
  179. }
  180. $select_page = '';
  181. $select_page .= ''. "\n";
  182. return $select_page;
  183. }else{
  184. return NULL;
  185. }
  186. }

  187. private function PMA_page_no_array()

  188. {
  189. $showAll = 200;
  190. $sliceStart = 5;
  191. $sliceEnd = 5;
  192. $percent = 20;
  193. $range = 10;

  194. if ($this->page_max < $showAll){

  195. $this->PMA_page_no_array = range(1, $this->page_max);
  196. } else {
  197. $this->PMA_page_no_array = array();
  198. for ($i = 1; $i <= $sliceStart; $i++) {
  199. $this->PMA_page_no_array[] = $i;
  200. }
  201. for ($i = $this->page_max - $sliceEnd; $i <= $this->page_max; $i++) {
  202. $this->PMA_page_no_array[] = $i;
  203. }
  204. $i = $sliceStart;
  205. $x = $this->page_max - $sliceEnd;
  206. $met_boundary = false;
  207. while ($i <= $x) {
  208. if ($i >= ($this->page - $range) && $i <= ($this->page + $range)) {
  209. $i++;
  210. $met_boundary = true;
  211. } else {
  212. $i = $i + floor($this->page_max / $percent);
  213. if ($i > ($this->page - $range) && !$met_boundary) {
  214. $i = $this->page - $range;
  215. }
  216. }
  217. if ($i > 0 && $i <= $x) {
  218. $this->PMA_page_no_array[] = $i;
  219. }
  220. }
  221. sort($this->PMA_page_no_array);
  222. $this->PMA_page_no_array = array_unique($this->PMA_page_no_array);
  223. }
  224. return $this->PMA_page_no_array;
  225. }

  226. public function key_change_page(){

  227. echo '';
  228. }

  229. public function eshow()

  230. {
  231. return $this->last().$this->next();
  232. }

  233. public function showForHelp()

  234. {
  235. return $this->first('首页', '').$this->last('上一页', '').$this->page_num_format('', '', '', false, '#FF8500').$this->next('下一页', '').$this->end('尾页', '');
  236. }

  237. public function show()

  238. {
  239. return $this->header_info().$this->first('首页', '').$this->last('上一页', '').$this->page_num_format('', '', '', false, '#FF8500').$this->next('下一页', '').$this->end('尾页', '');
  240. }
  241. }

2,php分页类的使用方法:

  1. header('content-type:text/html;charset=utf-8');
  2. include('Page.class.php');
  3. $page_all_no = 12000; //数据的总条数
  4. $page_num = 25; //设置每页显示的条数
  5. $page_len = 7; //最多显示的页码数
  6. $page = new Page($page_all_no, $page_num, $page_len);
  7. $start_num = $page->start_num;
  8. $sql = "select * from table limit {$start_num}, {$page_num}";
  9. $page->key_change_page(); //方向键翻页
  10. var_dump($sql);
  11. //自带三种分页形式,可再按需要添加新方法,像下面那样调用
  12. echo '

    '.$page->select_page('self', 'NORMAL').'

    '; //这里的第二个参数默认为PMA模式,两种模式差别在上面已给出
  13. echo '

    '.$page->eshow().'

    ';
  14. echo '

    '.$page->show().'

    ';

3,php分页类,效果图: php分页类代码

人气教程排行