网站地图    收藏   

主页 > php专栏 > php分页 >

php通用分页类代码

来源:未知    时间:2014-11-27 22:49 作者:xxadmin 阅读:

[导读] class dividepage{ //分页类 private $total ; //要显示的总记录数 private $url ; //请求的url地址 private $displaypg ; //每页显示的记录数,默认为每页显示10条记录 private $page ; //当前页码 private $lastpg...

 
  1. class dividepage{//分页类 
  2.  private $total;//要显示的总记录数 
  3.  private $url;//请求的url地址 
  4.  private $displaypg;//每页显示的记录数,默认为每页显示10条记录 
  5.  private $page;//当前页码 
  6.  private $lastpg;//总页数,即最后一页的页码 
  7.  private $prepg;//前一页 
  8.  private $nextpg;//后一页 
  9.  private $firstcount;//记录条数开始的序号从0开始 
  10.  private $startd;//记录条数开始的记录号. 
  11.  private $stopd;//记录条数结束的记录号. 
  12. //构造函数 
  13. public function __construct($url$total$displaypg){ 
  14.  $this->url = $url;//请求的url 
  15.  $this->total = $total;//总记录数 
  16.  //if($displaypg == '') 
  17.  $this->displaypg = $displaypg;//每页显示的记录数 
  18.  $this->initdividepage();//初始化分页类 
  19.  //echo ','.$this->displaypg; 
  20. //初始化分页类 
  21. private function initdividepage(){ 
  22.  //分析url 
  23.  $parse_url = parse_url($this->url);//将url解释为有固定键值对的数组 
  24.  $url_query = $parse_url['query'];//取出url中的查询字符串 
  25.  if($url_query){//如果有查询字符串,则删除查询字串中当前页的查询字段如:&page=$page或page=$page 
  26.   ereg('(^|&)page=([0-9]*)'$url_query$k); 
  27.   $this->page = $k[2];//取得当前页的值 
  28.   $url_query = ereg_replace("(^|&)page=$this->page"''$url_query);//删除查询字串中当前页的查询字段如:&page=$page或page=$page 
  29.   $this->url = str_replace($parse_url['query'], $url_query$this->url);//保留其他的查询字串, 
  30.   $this->page = $this->page ? $this->page : 1;//w如果查询字符串中没有当前页的值就设当前页为1 
  31.   if($url_query){//如果有其他查询字符串,则以&page=$page形式添加翻页查询字串 
  32.    $this->url .= '&page'
  33.   }else{//如果没有其他查询字串,则以page=$page形式添加翻页查询字串 
  34.    $this->url .= 'page'
  35.   } 
  36.  }else{//如果没有查询字串,则在url后添加?page=$page形式的翻页查询字串 
  37.   $this->page = 1; 
  38.   $this->url .= '?page'
  39.  } 
  40.  $this->lastpg = ceil($this->total / $this->displaypg);//计算总页数,即最后一页的页码 
  41.     $this->page = min($this->lastpg, $this->page);//如果当前页大于总页数,则当前页为最后一页的页码 
  42.     $this->prepg = $this->page - 1;//上一页为当前页减一www.111cn.net 
  43.     $this->nextpg = $this->page + 1;//(($this->page == $this->lastpg) ? $this->lastpg : ($this->page + 1));//下一页为当前页加一,如果当前页为最后一页,则下一页为0 
  44.     $this->firstcount = ($this->page - 1) * $this->displaypg;//计算当前页,记录条数开始的记录号,从0开始. 
  45.  $this->startd = $this->total ? ($this->firstcount + 1) : 0;//记录开始号从1开始 
  46.  $this->stopd = min($this->firstcount + $this->displaypg, $this->total);//记录结束号 
  47.  //echo $this->displaypg; 
  48.  //echo $this->nextpg.'+=+='.$this->lastpg; 
  49. public function getpageinfo(){//取得当前页面的基本信息,如:显示第 1-10 条记录,共 23 条记录。 

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论