当前位置:Gxlcms > PHP教程 > php分页类代码,支持伪静态的php分页类

php分页类代码,支持伪静态的php分页类

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

  1. class Page{
  2. protected $each_disNums;//每页显示的条目数
  3. protected $nums;//总条目数
  4. protected $current_page;//当前被选中的页
  5. protected $sub_pages;//每次显示的页数
  6. protected $pageNums;//总页数
  7. protected $page_array = array();//用来构造分页的数组
  8. protected $subPage_link;//每个分页的链接
  9. protected $subPage_type;//显示分页的类型
  10. protected $houz;//后缀
  11. /*
  12. __construct是SubPages的构造函数,用来在创建类的时候自动运行.
  13. @$each_disNums每页显示的条目数
  14. @nums 总条目数
  15. @current_num 当前被选中的页
  16. @sub_pages每次显示的页数
  17. @subPage_link每个分页的链接
  18. @subPage_type显示分页的类型
  19. 当@subPage_type=1的时候为普通分页模式
  20. example:共4523条记录,每页显示10条,当前第1/453页 [首页] [上页] [下页] [尾页]
  21. 当@subPage_type=2的时候为经典分页样式
  22. example:当前第1/453页 [首页] [上页] 1 2 3 4 5 6 7 8 9 10 [下页] [尾页]
  23. */
  24. function __construct($each_disNums,$nums,$current_page,$sub_pages,$subPage_link,$subPage_type,$houz=''){
  25. $this->each_disNums=intval($each_disNums);
  26. $this->nums=intval($nums);
  27. if(!$current_page){
  28. $this->current_page=1;
  29. }else{
  30. $this->current_page=intval($current_page);
  31. }
  32. $this->sub_pages=intval($sub_pages);
  33. $this->pageNums=ceil($nums/$each_disNums);
  34. $this->subPage_link=$subPage_link;
  35. $this->show_SubPages($subPage_type);
  36. $this->houz=$houz;
  37. //echo $this->pageNums."--".$this->sub_pages;
  38. }
  39. /*
  40. __destruct析构函数,当类不在使用的时候调用,该函数用来释放资源。
  41. */
  42. function __destruct(){
  43. unset($each_disNums);
  44. unset($nums);
  45. unset($current_page);
  46. unset($sub_pages);
  47. unset($pageNums);
  48. unset($page_array);
  49. unset($subPage_link);
  50. unset($subPage_type);
  51. }
  52. /*
  53. show_SubPages函数用在构造函数里面。而且用来判断显示什么样子的分页
  54. */
  55. function show_SubPages($subPage_type){
  56. if($subPage_type == 1){
  57. $this->subPageCss1();
  58. }elseif ($subPage_type == 2){
  59. $this->subPageCss2();
  60. }
  61. }
  62. /*
  63. 用来给建立分页的数组初始化的函数。
  64. */
  65. function initArray(){
  66. for($i=0;$i<$this->sub_pages;$i++){
  67. $this->page_array[$i]=$i;
  68. }
  69. return $this->page_array;
  70. }
  71. /*
  72. construct_num_Page该函数使用来构造显示的条目
  73. 即使:[1][2][3][4][5][6][7][8][9][10]
  74. */
  75. function construct_num_Page(){
  76. if($this->pageNums < $this->sub_pages){
  77. $current_array=array();
  78. for($i=0;$i<$this->pageNums;$i++){
  79. $current_array[$i]=$i+1;
  80. }
  81. }else{
  82. $current_array=$this->initArray();
  83. if($this->current_page <= 3){
  84. for($i=0;$i $current_array[$i]=$i+1;
  85. }
  86. }elseif ($this->current_page <= $this->pageNums && $this->current_page > $this->pageNums - $this->sub_pages + 1 ){
  87. for($i=0;$i $current_array[$i]=($this->pageNums)-($this->sub_pages)+1+$i;
  88. }
  89. }else{
  90. for($i=0;$i $current_array[$i]=$this->current_page-2+$i;
  91. }
  92. }
  93. }
  94. return $current_array;
  95. }
  96. /*
  97. 构造普通模式的分页
  98. 共4523条记录,每页显示10条,当前第1/453页 [首页] [上页] [下页] [尾页]
  99. */ bbs.it-home.org
  100. function subPageCss1(){
  101. $subPageCss1Str="";
  102. $subPageCss1Str.="共".$this->nums."条记录,";
  103. $subPageCss1Str.="每页显示".$this->each_disNums."条,";
  104. $subPageCss1Str.="当前第".$this->current_page."/".$this->pageNums."页 ";
  105. if($this->current_page > 1){
  106. $firstPageUrl=$this->subPage_link."1".$this->houz;
  107. $prewPageUrl=$this->subPage_link.($this->current_page-1).$this->houz;
  108. $subPageCss1Str.="[首页] ";
  109. $subPageCss1Str.="[上一页] ";
  110. }else {
  111. $subPageCss1Str.="[首页] ";
  112. $subPageCss1Str.="[上一页] ";
  113. }
  114. if($this->current_page < $this->pageNums){
  115. $lastPageUrl=$this->subPage_link.$this->pageNums.$this->houz;
  116. $nextPageUrl=$this->subPage_link.($this->current_page+1).$this->houz;
  117. $subPageCss1Str.=" [下一页] ";
  118. $subPageCss1Str.="[尾页] ";
  119. }else {
  120. $subPageCss1Str.="[下一页] ";
  121. $subPageCss1Str.="[尾页] ";
  122. }
  123. return $subPageCss1Str;
  124. }
  125. /*
  126. 构造经典模式的分页
  127. 当前第1/453页 [首页] [上页] 1 2 3 4 5 6 7 8 9 10 [下页] [尾页]
  128. */
  129. function subPageCss2(){
  130. $subPageCss2Str="";
  131. $subPageCss2Str.="共[".$this->nums."]条 当前第".$this->current_page."/".$this->pageNums."页";
  132. if($this->current_page > 1){
  133. $firstPageUrl=$this->subPage_link."1".$this->houz;
  134. $prewPageUrl=$this->subPage_link.($this->current_page-1).$this->houz;
  135. $subPageCss2Str.="[首页] ";
  136. $subPageCss2Str.="[上一页] ";
  137. }else {
  138. $subPageCss2Str.="[首页] ";
  139. $subPageCss2Str.="[上一页] ";
  140. }
  141. $a=$this->construct_num_Page();
  142. for($i=0;$i$s=$a[$i];
  143. if($s == $this->current_page ){
  144. $subPageCss2Str.="[".$s."]";
  145. }else{
  146. $url=$this->subPage_link.$s.$this->houz;
  147. $subPageCss2Str.="[".$s."]";
  148. }
  149. }
  150. if($this->current_page < $this->pageNums){
  151. $lastPageUrl=$this->subPage_link.$this->pageNums.$this->houz;
  152. $nextPageUrl=$this->subPage_link.($this->current_page+1).$this->houz;
  153. $subPageCss2Str.=" [下一页] ";
  154. $subPageCss2Str.="[尾页] ";
  155. }else {
  156. $subPageCss2Str.="[下一页] ";
  157. $subPageCss2Str.="[尾页] ";
  158. }
  159. return $subPageCss2Str;
  160. }
  161. /*
  162. 构造经典模式ajax的分页
  163. 当前第1/453页 [首页] [上页] 1 2 3 4 5 6 7 8 9 10 [下页] [尾页]
  164. */
  165. function subPageCss3($fun='',$v='n'){
  166. $subPageCss2Str="";
  167. $subPageCss2Str.="共[".$this->nums."]条 当前第".$this->current_page."/".$this->pageNums."页";
  168. if($this->current_page > 1){
  169. //$firstPageUrl=$this->subPage_link."1";
  170. $prewPageUrl=$this->current_page-1;
  171. $subPageCss2Str.="[首页] ";
  172. $subPageCss2Str.="[上一页] ";
  173. }else {
  174. $subPageCss2Str.="[首页] ";
  175. $subPageCss2Str.="[上一页] ";
  176. }
  177. $a=$this->construct_num_Page();
  178. for($i=0;$i$s=$a[$i];
  179. if($s == $this->current_page ){
  180. $subPageCss2Str.="[$s]";
  181. }else{
  182. $subPageCss2Str.="[$s]";
  183. }
  184. }
  185. if($this->current_page < $this->pageNums){
  186. $lastPageUrl=$this->pageNums;
  187. $nextPageUrl=$this->current_page+1;
  188. $subPageCss2Str.=" [下一页] ";
  189. $subPageCss2Str.="[尾页] ";
  190. }else {
  191. $subPageCss2Str.="[下一页] ";
  192. $subPageCss2Str.="[尾页] ";
  193. }
  194. return $subPageCss2Str;
  195. }
  196. }
  197. ?>

使用方法: 实例化一下这个page类, $list = new Page(每页多少条数据,数据总量,当前页,用来构造分页的数组,每个分页的链接 ,显示分页的类型,后缀 ); 比如 $list = new Page(10,1000,1,10,’/zjjz/’,2,’.html’); echo $page = $list->subPageCss2(); 就会显示: 当前第1/100页 [首页] [上页] 1 2 3 4 5 6 7 8 9 10 [下页] [尾页] 每个连接就是 /zjjz/1.html,/zjjz/2.html……. 可以根据直接需要,来组合这个每个分页的链接,实现伪静态。

而ajax分页,就是

$list = new Page($pagesize,$areaAllNumber,$current_page,10,”,3); $url = $val1.’,’.$val2;//这个就是你要触发的js函数中要传递的值, $page = $list->subPageCss3(‘checkProducts’,$url);//第一个参数就是要触发的js函数。从而达到ajax分页的效果。

还有一个subPageCss1是 共4523条记录,每页显示10条,当前第1/453页 [首页] [上页] [下页] [尾页] 此种简单样式,也支持伪静态。

人气教程排行