PHP 페이징 클래스 및 페이징 기능, 선택할 수 있는 다양한 페이징 스타일

WBOY
풀어 주다: 2016-07-25 08:51:37
원래의
1180명이 탐색했습니다.
  1. /**

  2. * 페이지 이름: page_class.php
  3. */
  4. 클래스 페이지 {
  5. private $each_disNums //각 페이지에 표시되는 항목 Number
  6. private $nums; //총 항목 수
  7. private $current_page; //현재 선택된 페이지
  8. private $sub_pages; //매번 표시되는 페이지 수
  9. private $pageNums; 총 페이지 수
  10. private $page_array = array (); //페이징 구성에 사용되는 배열
  11. private $subPage_link; //각 페이징에 대한 링크
  12. /**
  13. *
  14. * __construct는 클래스 생성 시 자동으로 실행되는 SubPages의 생성자입니다.
  15. * @$each_disNums 각 페이지에 표시되는 항목 수
  16. * @nums 총 수 of items
  17. * @current_num 현재 선택된 페이지
  18. * @sub_pages 매번 표시되는 페이지 수
  19. * @subPage_link 각 페이지의 링크
  20. * @subPage_type 표시되는 페이지 유형
  21. *
  22. * @subPage_type=1일 때 일반 페이징 모드
  23. * 예: 총 4523개 레코드, 각 페이지에 10개 레코드 표시, 현재 페이지 1/453 [홈페이지] [이전 페이지] [다음 페이지 ] [마지막 페이지]
  24. * @subPage_type=2일 경우 클래식 페이징 스타일
  25. * 예시: 현재 페이지 1/453 [홈 페이지] [이전 페이지] 1 2 3 4 5 6 7 8 9 10 [다음 페이지] [마지막 페이지]
  26. */
  27. 함수 페이지($each_disNums, $nums, $current_page, $sub_pages, $subPage_link) {
  28. $this->each_disNums = intval($each_disNums);
  29. $this->nums = intval($nums );
  30. if (!$current_page) {
  31. $this->current_page = 1;
  32. } else {
  33. $this->current_page = intval($current_page);
  34. }
  35. $this->sub_pages = intval($sub_pages);
  36. $this->pageNums = ceil($nums / $each_disNums);
  37. $this->subPage_link = $subPage_link;
  38. }
  39. /**
  40. * 낮은 버전을 주의하세요
  41. */
  42. 함수 __construct($each_disNums, $nums, $current_page, $sub_pages, $subPage_linke) {
  43. $this->Page($each_disNums, $nums , $ current_page, $sub_pages, $subPage_link);
  44. }

  45. /*

  46. __destruct 소멸자, 클래스가 더 이상 사용되지 않을 때 호출되며 이 함수는 리소스를 해제하는 데 사용됩니다. .
  47. */
  48. function __destruct() {
  49. 설정 해제($each_disNums);
  50. 설정 해제($nums);
  51. 설정 해제($current_page);
  52. 설정 해제($sub_pages);
  53. unset($pageNums);
  54. unset($page_array);
  55. unset($subPage_link);
  56. }

  57. /*

  58. 은 다음과 같은 용도로 사용됩니다. 페이지가 매겨진 배열 초기화를 생성하는 함수입니다.
  59. */
  60. 함수 initArray() {
  61. for ($i = 0; $i < $this->sub_pages; $i ) {
  62. $this->page_array[$i ] = $i;
  63. }
  64. return $this->page_array;
  65. }

  66. /*

  67. construct_num_Page该函数使用来构造显示的条目
  68. 即使:[1][2][3][4][5][6][7][8][9][10]
  69. */
  70. 함수 constructor_num_Page() {
  71. if ($this->pageNums < $this->sub_pages) {
  72. $current_array = array ();
  73. for ($i = 0; $i < $this->pageNums; $i ) {
  74. $current_array[$i] = $i 1;
  75. }
  76. } else {
  77. $current_array = $this->initArray();
  78. if ($this ->current_page <= 3) {
  79. for ($i = 0; $i < count($current_array); $i ) {
  80. $current_array[$i] = $i 1;
  81. }
  82. }
  83. elseif ($this->current_page <= $this->pageNums && $this->current_page > $this->pageNums - $this->sub_pages 1) {
  84. for ($i = 0; $i $current_array[$i] = ($this->pageNums) - ($this-> sub_pages) 1 $i;
  85. }
  86. } else {
  87. for ($i = 0; $i < count($current_array); $i ) {
  88. $current_array[$i] = $this->current_page - 2 $i;
  89. }
  90. }
  91. }

  92. return $current_array;

  93. }

  94. /*

  95. 构造普模式的分页
  96. 共4523条记录,每页显示10条,当前第1/453页 [首页] [上页] [下页] [尾页]
  97. */
  98. function subPageCss1() {
  99. $subPageCss1Str = "";
  100. $subPageCss1Str .= "共" . $this->nums . "条记录,";
  101. $subPageCss1Str .= "每页显示" . $this->each_disNums . "条,";
  102. $subPageCss1Str .= "当前第" . $this->현재_페이지 . "/" . $this->pageNums . "页 ";
  103. if ($this->current_page > 1) {
  104. $firstPageUrl = $this->subPage_link . "1";
  105. $prewPageUrl = $this->subPage_link . ($this->current_page - 1);
  106. $subPageCss1Str .= "[首页] ";
  107. $subPageCss1Str .= "[< ;a href='$prewPageUrl'>上一页] ";
  108. } else {
  109. $subPageCss1Str .= "[首页] ";
  110. $subPageCss1Str .= "[上一页] ";
  111. }

  112. if ($this->current_page < $this->pageNums) {

  113. $lastPageUrl = $this-> 하위페이지_링크 . $this->pageNums;
  114. $nextPageUrl = $this->subPage_link . ($this->current_page 1);
  115. $subPageCss1Str .= " [下一页] ";
  116. $subPageCss1Str .= "[ 尾页] ";
  117. } else {
  118. $subPageCss1Str .= "[下一页] ";
  119. $subPageCss1Str .= " [尾页] ";
  120. }

  121. return $subPageCss1Str;

  122. }

  123. 构造经典模式的分页
  124. 当前第1/453页 [首页] [上页] 1 2 3 4 5 6 7 8 9 10 [下页] [尾页]
  125. */
  126. 함수 subPageCss2() {
  127. $subPageCss2Str = "";
  128. $subPageCss2Str .= "当前第" . $this->현재_페이지 . "/" . $this->pageNums . "页 ";

  129. if ($this->current_page > 1) {

  130. $firstPageUrl = $this->subPage_link . "1";
  131. $prewPageUrl = $this->subPage_link . ($this->current_page - 1);
  132. $subPageCss2Str .= "[首页] ";
  133. $subPageCss2Str .= "[< ;a href='$prewPageUrl'>上一页] ";
  134. } else {
  135. $subPageCss2Str .= "[首页] ";
  136. $subPageCss2Str .= "[上一页] ";
  137. }

  138. $a = $this->construct_num_Page();

  139. for ($i = 0; $i < count($ a); $i ) {
  140. $s = $a[$i];
  141. if ($s == $this->current_page) {
  142. $subPageCss2Str .= "[" . $s . "]";
  143. } else {
  144. $url = $this->subPage_link . $s;
  145. $subPageCss2Str .= "[" . $s . "]";
  146. }
  147. }

  148. if ($this->current_page < $this->pageNums) {

  149. $lastPageUrl = $this->subPage_link . $this->pageNums;
  150. $nextPageUrl = $this->subPage_link . ($this->current_page 1);
  151. $subPageCss2Str .= " [下一页] ";
  152. $subPageCss2Str .= "[ 尾页] ";
  153. } else {
  154. $subPageCss2Str .= "[下一页] ";
  155. $subPageCss2Str .= " [尾页] ";
  156. }
  157. return $subPageCss2Str;
  158. }
  159. }

  160. //두 가지 다른 효과 테스트

  161. $t = new Page(10, 100, $_GET[ ' p'], 5, 'page_class.php?p=');
  162. echo $t->subPageCss2() //클래식 페이징 함수 호출

  163. echo " < ;br>";

  164. echo $t->subPageCss1();//일반 페이징 기능 호출

코드 복사


원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿