ホームページ  >  記事  >  バックエンド開発  >  PHP ページング クラスとページング関数、複数のページング スタイルから選択可能

PHP ページング クラスとページング関数、複数のページング スタイルから選択可能

WBOY
WBOYオリジナル
2016-07-25 08:51:371173ブラウズ
  1. /**

  2. * ページ名: page_class.php
  3. */
  4. class Page {
  5. private $each_disNums; //ページごとに表示されるエントリ数
  6. private $nums; //エントリの合計数
  7. private $current_page ; //現在選択されているページ
  8. private $sub_pages; //毎回表示されるページ数
  9. private $page_array = array (); subPage_link; //各ページのリンク
  10. /**
  11. *
  12. * __construct は、クラスの作成時に自動的に実行される SubPages のコンストラクターです。
  13. * @$each_disNums 各ページに表示されるエントリの数
  14. * @nums エントリの合計数
  15. * @current_num 現在選択されているページ
  16. * @sub_pages 毎回表示されるページ数
  17. * @subPage_link 各ページングのリンク
  18. * @subPage_type ページングの種類を表示
  19. *
  20. * @subPage_type=1の場合、通常ページングモード
  21. * 例:4523件合計で、各ページには 10 個の項目が表示され、現在のページ 1/453 [ホーム] [前のページ] [次のページ] [最後のページ]
  22. * @subPage_type=2 の場合、古典的なページング スタイルです
  23. * 例:現在のページ 1/453 [ トップページ ] [ 前のページ ] 1 2 3 4 5 6 7 8 9 10 [ 次のページ ] [ 最後のページ ]
  24. */
  25. function Page($each_disNums, $nums, $current_page, $sub_pages, $subPage_link) {
  26. $this->each_disNums = intval($each_disNums ) ;
  27. $this->nums = intval($nums);
  28. if (!$current_page) {
  29. $this->current_page = 1;
  30. } else {
  31. $this->current_page = intval($current_page ) ;
  32. }
  33. $this->sub_pages = intval($sub_pages);
  34. $this->pageNums = ceil($nums / $each_disNums);
  35. $this->subPage_link = $subPage_link;
  36. }
  37. / * *
  38. * 低バージョンにご注意ください
  39. */
  40. function __construct($each_disNums, $nums, $current_page, $sub_pages, $subPage_linke) {
  41. $this->Page($each_disNums, $nums, $current_page, $sub_pages, $subPage_link) ;
  42. }

  43. /*

  44. __destruct デストラクター。クラスが使用されなくなったときに呼び出されます。この関数は、リソースを解放するために使用されます。
  45. */
  46. function __destruct() {
  47. unset ($each_disNums);
  48. unset ($nums);
  49. unset ($current_page);
  50. unset ($sub_pages);
  51. unset ($pageNums);
  52. unset ($page_array) ;
  53. unset ($subPage_link);
  54. }

  55. /*

  56. ページング配列を初期化するために使用される関数。
  57. */
  58. function initArray() {
  59. for ($i = 0; $i < $this->sub_pages; $i++) {
  60. $this->page_array[$i] = $i;
  61. }
  62. return $this->page_array;
  63. }

  64. /*

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

  88. return $current_array;

  89. }

  90. /*

  91. 構築普通モードの分页
  92. 共4523条记录,每页显示10条,当前第1/453页 [首页] [上页] [下页] [尾页]
  93. */
  94. function subPageCss1() {
  95. $subPageCss1Str = "";
  96. $subPageCss1Str .= "共」。 $this->nums 。 "条记录,";
  97. $subPageCss1Str .= "每页显示" 。 $this->each_disNums 。 "条,";
  98. $subPageCss1Str .= "当前第" . $this->current_page 。 「/」。 $this->pageNums 。 "页 ";
  99. if ($this->current_page > 1) {
  100. $firstPageUrl = $this->subPage_link . "1";
  101. $prewPageUrl = $this->subPage_link 。 ($this->current_page - 1);
  102. $subPageCss1Str .= "[首页] ";
  103. $subPageCss1Str .= "[上一页] ";
  104. } else {
  105. $subPageCss1Str .= "[首页] ";
  106. $subPageCss1Str .= "[上一页] ";
  107. }
  108. if ($this->current_page < $this->pageNums) {

  109. $lastPageUrl = $this->subPage_link . $this->pageNums;
  110. $nextPageUrl = $this->subPage_link 。 ($this->current_page + 1);
  111. $subPageCss1Str .= " [下一页] ";
  112. $subPageCss1Str .= "[尾页] ";
  113. } else {
  114. $subPageCss1Str .= "[下一页] ";
  115. $subPageCss1Str .= "[尾页] ";
  116. }< ;/p>
  117. return $subPageCss1Str;

  118. }

  119. /*

  120. 构造经典模式的分页
  121. 当前第1/453页 [首页] [上页] 1 2 3 4 5 6 7 8 9 10 [下页] [尾页]
  122. */
  123. function subPageCss2() {
  124. $subPageCss2Str = "";
  125. $subPageCss2Str .= "当前第" . $this->current_page 。 「/」。 $this->pageNums 。 "页 ";

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

  127. $firstPageUrl = $this->subPage_link . "1";
  128. $prewPageUrl = $this->subPage_link 。 ($this->current_page - 1);
  129. $subPageCss2Str .= "[首页] ";
  130. $subPageCss2Str .= "[上一页] ";
  131. } else {
  132. $subPageCss2Str .= "[首页] ";
  133. $subPageCss2Str .= "[上一页] ";
  134. }
  135. $a = $this->construct_num_Page();

  136. for ($i = 0; $i $s = $a[$i ];
  137. if ($s == $this->current_page) {
  138. $subPageCss2Str .= "[" 。 $s . "]";
  139. } else {
  140. $url = $this->subPage_link . $s;
  141. $subPageCss2Str .= "[" 。 $s . "]";
  142. }
  143. }

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

  145. $lastPageUrl = $this-> subPage_link 。 $this->pageNums;
  146. $nextPageUrl = $this->subPage_link 。 ($this->current_page + 1);
  147. $subPageCss2Str .= " [下一页] ";
  148. $subPageCss2Str .= "[尾页] ";
  149. } else {
  150. $subPageCss2Str .= "[下一页] ";
  151. $subPageCss2Str .= "[尾页] ";
  152. }
  153. return $subPageCss2Str;
  154. }
  155. }

  156. //2 つの異なる効果をテストします

  157. $t = new Page(10, 100, $_GET['p'], 5, 'page_class.php ?p=');
  158. echo $t->subPageCss2(); //古典的なページング関数を呼び出します

  159. echo "
    ";

  160. echo $t->subPageCss1 ( );// 通常のページング関数を呼び出します

コードをコピー


声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。