不错的php+mysql分页类

WBOY
Freigeben: 2016-07-25 08:52:45
Original
775 Leute haben es durchsucht
  1. /*****************************
  2. * @类名: page
  3. * @参数: $myde_total - 总记录数
  4. * $myde_size - 一页显示的记录数
  5. * $myde_page - 当前页
  6. * $myde_url - 获取当前的url
  7. * @功能: 分页实现
  8. * @作者: 宋海阁
  9. */
  10. class page {
  11. private $myde_total; //总记录数
  12. private $myde_size; //一页显示的记录数
  13. private $myde_page; //当前页
  14. private $myde_page_count; //总页数
  15. private $myde_i; //起头页数
  16. private $myde_en; //结尾页数
  17. private $myde_url;//获取当前的url
  18. /*
  19. * $show_pages
  20. * 页面显示的格式,显示链接的页数为2*$show_pages+1。
  21. * 如$show_pages=2那么页面上显示就是[首页] [上页] 1 2 3 4 5 [下页] [尾页]
  22. */
  23. private $show_pages;
  24. public function __construct($myde_total=1,$myde_size=1,$myde_page=1,$myde_url,$show_pages=2){
  25. $this->myde_total = $this->numeric($myde_total);
  26. $this->myde_size = $this->numeric($myde_size);
  27. $this->myde_page = $this->numeric($myde_page);
  28. $this->myde_page_count = ceil($this->myde_total/$this->myde_size);
  29. $this->myde_url = $myde_url;
  30. if($this->myde_totalmyde_total=0;
  31. if($this->myde_pagemyde_page=1;
  32. if($this->myde_page_countmyde_page_count=1;
  33. if($this->myde_page>$this->myde_page_count) $this->myde_page=$this->myde_page_count;
  34. $this->limit = ($this->myde_page-1)*$this->myde_size;
  35. $this->myde_i=$this->myde_page-$show_pages;
  36. $this->myde_en=$this->myde_page+$show_pages;
  37. if($this->myde_i $this->myde_en=$this->myde_en+(1-$this->myde_i);
  38. $this->myde_i=1;
  39. }
  40. if($this->myde_en>$this->myde_page_count){
  41. $this->myde_i = $this->myde_i-($this->myde_en-$this->myde_page_count);
  42. $this->myde_en=$this->myde_page_count;
  43. }
  44. if($this->myde_imyde_i=1;
  45. }
  46. //检测是否为数字
  47. private function numeric($num){
  48. if(strlen($num)){
  49. if(!preg_match("/^[0-9]+$/",$num)){
  50. $num=1;
  51. }else{
  52. $num = substr($num,0,11);
  53. }
  54. }else{
  55. $num=1;
  56. }
  57. return $num;
  58. }
  59. //地址替换
  60. private function page_replace($page){
  61. return str_replace("{page}",$page,$this->myde_url);
  62. }
  63. //首页
  64. private function myde_home(){
  65. if($this->myde_page!=1){
  66. return "page_replace(1)."" title="首页">首页";
  67. }else{
  68. return "

    首页

    ";
  69. }
  70. }
  71. //上一页
  72. private function myde_prev(){
  73. if($this->myde_page!=1){
  74. return "page_replace($this->myde_page-1)."" title="上一页">上一页";
  75. }else{
  76. return "

    上一页

    ";
  77. }
  78. }
  79. //下一页
  80. private function myde_next(){
  81. if($this->myde_page!=$this->myde_page_count){
  82. return "page_replace($this->myde_page+1)."" title="下一页">下一页";
  83. }else{
  84. return"

    下一页

    ";
  85. }
  86. }
  87. //尾页
  88. private function myde_last(){
  89. if($this->myde_page!=$this->myde_page_count){
  90. return "page_replace($this->myde_page_count)."" title="尾页">尾页";
  91. }else{
  92. return "

    尾页

    ";
  93. }
  94. }
  95. //输出
  96. public function myde_write($id='page'){
  97. $str ="
    ";
  98. $str.=$this->myde_home();
  99. $str.=$this->myde_prev();
  100. if($this->myde_i>1){
  101. $str.="

    ...

    ";
  102. }
  103. for($i=$this->myde_i;$imyde_en;$i++){
  104. if($i==$this->myde_page){
  105. $str.="page_replace($i)."" title="第".$i."页" class="cur">$i";
  106. }else{
  107. $str.="page_replace($i)."" title="第".$i."页">$i";
  108. }
  109. }
  110. if( $this->myde_enmyde_page_count ){
  111. $str.="

    ...

    ";
  112. }
  113. $str.=$this->myde_next();
  114. $str.=$this->myde_last();
  115. $str.="

    ".$this->myde_page_count.

  116. "
  117. ".$this->myde_total."条数据

    ";
  118. $str.="
";
  • return $str;
  • }
  • }
  • ?>
  • 复制代码

    php+mysql 分页原理:limit ($curpage-1)*$showrow,$showrow

    2,php展示页面代码

    1. require_once('./page.class.php'); //分页类
    2. $showrow = 3;//一页显示的行数
    3. $curpage = empty($_GET['page'])?1:$_GET['page'];//当前的页,还应该处理非数字的情况
    4. $url = "?page={page}";//分页地址,如果有检索条件 ="?page={page}&q=".$_GET['q']
    5. //省略了链接mysql的代码,测试时自行添加
    6. $sql = "SELECT * FROM table";
    7. $query = mysql_query($sql);
    8. $total = mysql_num_rows($query);//记录总条数
    9. if(!empty($_GET['page']) && $total !=0 && $curpage > ceil($total/$showrow))
    10. $curpage = ceil($total_rows/$showrow);//当前页数大于最后页数,取最后一页
    11. //获取数据
    12. $get_data = "select * from table limit ".($curpage-1)*$showrow.",$showrow;";
    13. ...
    14. ?>
    15. 简易通用的PHP分页类-bbs.it-home.org
  • if($total>$showrow){//总记录数大于每页显示数,显示分页
  • $page = new page($total,$showrow,$curpage,$url,2);
  • echo $page->myde_write();
  • }
  • ?>
  • 复制代码


  • Verwandte Etiketten:
    Quelle:php.cn
    Erklärung dieser Website
    Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
    Beliebte Tutorials
    Mehr>
    Neueste Downloads
    Mehr>
    Web-Effekte
    Quellcode der Website
    Website-Materialien
    Frontend-Vorlage