当前位置:首页 > PHP教程 > php分页 > 列表

PHP实现可自定义样式的分页类

发布:smiling 来源: PHP粉丝网  添加日期:2021-07-22 12:17:13 浏览: 评论:0 

这篇文章主要介绍了PHP实现可自定义样式的分页类,可以自定义分页样式,感兴趣的小伙伴们可以参考一下。

本文实例为大家分享了PHP实现可自定义样式的分页类,供大家参考,具体内容如下

  1. <?php 
  2.    
  3. //namespace Component; 
  4. /** 
  5.  * 2016-3-27 
  6.  * @author ankang 
  7.  */ 
  8. class Page { 
  9.  private $ShowPage
  10.  private $CountPage
  11.  private $Floorp
  12.  private $PageUrl
  13.  private $PageClass
  14.  private $CurClass
  15.    
  16.  /** 
  17.  * @author ankang 
  18.  * @param number $CountNum  数据总数 
  19.  * @param string $PageUrl  跳转链接 
  20.  * @param string $PageClass  <a>标签 总体样式  
  21.  * @param string $PageUrl  当前页样式 
  22.  * @param number $PageSize  每页显示的数据条数 
  23.  * @param number $ShowPage  每次显示的页数  
  24.  */ 
  25.  public function __construct($CountNum$PageUrl = NULL, $PageClass = NULL,$CurClass = NULL, $PageSize = 20, $ShowPage = 5) { 
  26.  $this->ShowPage = $ShowPage
  27.  $this->CountPage  = ceil ( $CountNum / $PageSize ); 
  28.  $this->Floorp  = floor ( $ShowPage / 2 ); // 偏移量  
  29.  $this->PageClass  = is_null ( $PageClass ) ? '' : $PageClass
  30.  $this->CurClass = is_null ( $CurClass ) ? '' : $CurClass
  31.     
  32.  // $ServerURL  = ( preg_match('/\?/i', $_SERVER['REQUEST_URI']))?preg_replace('/\&p\=[0-9]+/i', "", $_SERVER['REQUEST_URI']) : $_SERVER['REQUEST_URI']."?"; 
  33.  // if( substr($ButURL,0,2)=='//' ){ 
  34.   // $ServerURL  = substr($ServerURL,1); 
  35.  // } 
  36.  // $url   = preg_replace('/p=[\d]*/i', '', $ServerURL); 
  37.   $url   = ''
  38.  //推荐自己传url,不传也可以打开上面的代码自动获取 
  39.  $this->PageUrl  = is_null ( $PageUrl ) ? $url : $PageUrl
  40.  } 
  41.    
  42.  /** 
  43.  * 
  44.  * @param number $Page   
  45.  * @param string $ShowToPage 
  46.  *  首页,上下页,尾页 
  47.  * @param string $Html 标签元素,li,p  
  48.  * @return string 
  49.  */ 
  50.  public function getPage($Page = 1, $ShowToPage = true, $Html = null) { 
  51.  $StartPage  = ($Page - $this->Floorp); // 开始页码 
  52.  $EndPage  = ($Page + $this->Floorp); // 结束页码 
  53.     
  54.  if ($this->CountPage < $this->ShowPage) { 
  55.   $StartPage = 1; 
  56.   $EndPage = $this->CountPage; 
  57.  } 
  58.     
  59.  if ($StartPage < 1) { 
  60.   $StartPage = 1; 
  61.   $EndPage = $this->ShowPage; 
  62.  } 
  63.     
  64.  if ($EndPage > $this->CountPage) { 
  65.   $StartPage = $this->CountPage - $this->ShowPage + 1; 
  66.   $EndPage = $this->CountPage; 
  67.  } 
  68.     
  69.  $PageHtml = ''
  70.     
  71.  if (! is_null ( $Html )) { 
  72.   if ($Html == 'li') { 
  73.   $Shtml = '<li>'
  74.   $Ehtml = '</li>'
  75.   } else { 
  76.   $Shtml = '<p>'
  77.   $Ehtml = '</p>'
  78.   } 
  79.  } 
  80.     
  81.  if (true == $ShowToPage) { 
  82.   $PageHtml  .= "$Shtml<a href='{$this->PageUrl}p=1'>&laquo; 首页</a>$Ehtml"
  83.   $PrveUrl   = $this->getPrve($Page); 
  84.   $PageHtml  .= "$Shtml<a href='{$PrveUrl}'>&laquo; 上一页</a>$Ehtml"
  85.  } 
  86.     
  87.  for($i = $StartPage$i <= $EndPage$i ++) { 
  88.   if ($Page == $i) { 
  89.   $PageHtml  .= "$Shtml<a href='{$this->PageUrl}p={$i}' class='{$this->CurClass}'>{$i}</a>$Ehtml"
  90.   } else { 
  91.   $PageHtml  .= "$Shtml<a href='{$this->PageUrl}p={$i}' class='{$this->PageClass}'>{$i}</a>$Ehtml"
  92.   } 
  93.  } 
  94.     
  95.  if (true == $ShowToPage) { 
  96.   $NextUrl   = $this->getNext($Page); 
  97.   $PageHtml  .= "$Shtml<a href='{$NextUrl}'>下一页 &raquo;</a>$Ehtml"
  98.   $PageHtml  .= "$Shtml<a href='{$this->PageUrl}p={$this->CountPage}' >尾页 &raquo;</a>$Ehtml"
  99.  } 
  100.     
  101.  return $PageHtml
  102.  } 
  103.    
  104.  public function getPrve($Page){ 
  105.  if ($Page != 1) { 
  106.   $Prve  = $Page - 1; 
  107.   $PrveUrl  = "{$this->PageUrl}p={$Prve}"
  108.  } else { 
  109.   $PrveUrl  = "{$this->PageUrl}p=1"
  110.  } 
  111.     
  112.  return $PrveUrl
  113.  } 
  114.    
  115.  public function getNext($Page){ 
  116.  if ($Page != $this->CountPage) { 
  117.   $Next  = $Page + 1; 
  118.   $NextUrl  = "{$this->PageUrl}p={$Next}"
  119.  } else { 
  120.   $NextUrl  = "{$this->PageUrl}p={$this->CountPage}"
  121.  } 
  122.     
  123.  return $NextUrl
  124.  } 
  125.    
  126.    
  127.    

再为大家分享一个主要用于新手学习php分页,代码简单实用,主要是注释很完整。

1. Page.class.php

  1. <?php 
  2. /** 
  3.  * 分页类 
  4.  *  
  5.  * 调用方式: 
  6.  * $p=new Page(总页数,显示页数,当前页码,每页显示条数,[链接]); 
  7.  * print_r($p->getPages()); //生成一个页码数组(键为页码,值为链接) 
  8.  * echo $p->showPages(1); //生成一个页码样式(可添加自定义样式) 
  9.  *  
  10.  * @author: Dzer <Email:358654744@qq.com Blog:Dzer.me> 
  11.  * @version: 2014-12-25 09:09:42 
  12.  * @Last Modified time: 2014-12-28 17:37:13 
  13.  */ 
  14.    
  15. /* 
  16. 思路: 
  17. 给我一个 总页数,需要显示的页数,当前页,每页显示的条数,连接 
  18. 写一个方法 生成一个一维数组,键为页码 值为连接 
  19. 写一个方法 返回一个生成好样式的页码(并且可以根据自己需要添加样式) 
  20. 默认样式 共45条记录,每页显示10条,当前第1/4页 [首页] [上页] [1] [2] [3] .. [下页] [尾页] 
  21. */ 
  22. class Page{ 
  23.  protected $count;  //总条数 
  24.  protected $showPages//需要显示的页数 
  25.  protected $countPages//总页数 
  26.  protected $currPage//当前页 
  27.  protected $subPages//每页显示条数 
  28.  protected $href;  //连接 
  29.  protected $page_arr=array(); //保存生成的页码 键页码 值为连接 
  30.    
  31.  /** 
  32.   * __construct 构造函数(获取分页所需参数) 
  33.   * @param int $count  总条数 
  34.   * @param int $showPages 显示页数 
  35.   * @param int $currPage 当前页数 
  36.   * @param int $subPages 每页显示数量 
  37.   * @param string $href 连接(不设置则获取当前URL) 
  38.   */ 
  39.  public function __construct($count,$showPages,$currPage,$subPages,$href=''){ 
  40.   $this->count=$count
  41.   $this->showPages=$showPages
  42.   $this->currPage=$currPage
  43.   $this->subPages=$subPages
  44.      
  45.   //如果链接没有设置则获取当前连接 
  46.   if(emptyempty($href)){ 
  47.    $this->href=htmlentities($_SERVER['PHP_SELF']);  
  48.   }else
  49.    $this->href=$href
  50.   } 
  51.   $this->construct_Pages(); 
  52.  } 
  53.    
  54.  /** 
  55.   * getPages 返回页码数组 
  56.   * @return array 一维数组 键为页码 值为链接 
  57.   */ 
  58.  public function getPages(){ 
  59.   return $this->page_arr; 
  60.  } 
  61.    
  62.  /** 
  63.   * showPages 返回生成好的页码 
  64.   * @param int $style 样式 
  65.   * @return string  生成好的页码 
  66.   */ 
  67.  public function showPages($style=1){ 
  68.   $func='pageStyle'.$style
  69.   return $this->$func(); 
  70.  } 
  71.    
  72.  /** 
  73.   * pageStyle1 分页样式(可参照这个添加自定义样式 例如pageStyle2()) 
  74.   * 样式 共45条记录,每页显示10条,当前第1/4页 [首页] [上页] [1] [2] [3] .. [下页] [尾页]  
  75.   * @return string  
  76.   */ 
  77.  protected function pageStyle1(){ 
  78.   /* 构造普通模式的分页  
  79.   共4523条记录,每页显示10条,当前第1/453页 [首页] [上页] [1] [2] [3] .. [下页] [尾页]  
  80.   */ 
  81.   $pageStr='共'.$this->count.'条记录,每页显示'.$this->subPages.'条'
  82.   $pageStr.='当前第'.$this->currPage.'/'.$this->countPages.'页 '
  83.    
  84.   $_GET['page'] = 1; 
  85.   $pageStr.='<span>[<a href="'.$this->href.'?'.http_build_query($_GET).'">首页</a>] </span>'
  86.   //如果当前页不是第一页就显示上页 
  87.   if($this->currPage>1){ 
  88.    $_GET['page'] = $this->currPage-1; 
  89.    $pageStr.='<span>[<a href="'.$this->href.'?'.http_build_query($_GET).'">上页</a>] </span>'
  90.   } 
  91.    
  92.   foreach ($this->page_arr as $k => $v) { 
  93.    $_GET['page'] = $k
  94.    $pageStr.='<span>[<a href="'.$v.'">'.$k.'</a>] </span>'
  95.   } 
  96.    
  97.   //如果当前页小于总页数就显示下一页 
  98.   if($this->currPage<$this->countPages){ 
  99.    $_GET['page'] = $this->currPage+1; 
  100.    $pageStr.='<span>[<a href="'.$this->href.'?'.http_build_query($_GET).'">下页</a>] </span>'
  101.   } 
  102.    
  103.   $_GET['page'] = $this->countPages; 
  104.   $pageStr.='<span>[<a href="'.$this->href.'?'.http_build_query($_GET).'">尾页</a>] </span>'
  105.    
  106.   return $pageStr
  107.  } 
  108.    
  109.  /** 
  110.   * construct_Pages 生成页码数组 
  111.   * 键为页码,值为链接 
  112.   * $this->page_arr=Array( 
  113.   *     [1] => index.php?page=1 
  114.   *     [2] => index.php?page=2 
  115.   *     [3] => index.php?page=3 
  116.   *     ......) 
  117.   */ 
  118.  protected function construct_Pages(){ 
  119.   //计算总页数 
  120.   $this->countPages=ceil($this->count/$this->subPages); 
  121.   //根据当前页计算前后页数 
  122.   $leftPage_num=floor($this->showPages/2); 
  123.   $rightPage_num=$this->showPages-$leftPage_num
  124.    
  125.   //左边显示数为当前页减左边该显示的数 例如总显示7页 当前页是5 左边最小为5-3 右边为5+3 
  126.   $left=$this->currPage-$leftPage_num
  127.   $left=max($left,1); //左边最小不能小于1 
  128.   $right=$left+$this->showPages-1; //左边加显示页数减1就是右边显示数 
  129.   $right=min($right,$this->countPages); //右边最大不能大于总页数 
  130.   $left=max($right-$this->showPages+1,1); //确定右边再计算左边,必须二次计算 
  131.      
  132.   for ($i=$left$i <= $right$i++) { 
  133.    $_GET['page'] = $i
  134.    $this->page_arr[$i]=$this->href.'?'.http_build_query($_GET); 
  135.   } 
  136.  } 

2. demo.php

  1. <?php 
  2. /** 
  3.  * 分页类demo 
  4.  * Be the best of whatever you are! 
  5.  *  
  6.  * @author: Dzer<358654744@qq.com> 
  7.  * @version: 2014-12-28 17:38:23 
  8.  * @Last Modified time: 2014-12-28 18:08:28 
  9.  */ 
  10. header("content-type:text/html;charset=utf8"); 
  11. include('./Page.class.php'); //引入类 
  12.    
  13. //$p=new Page(总页数,显示页数,当前页码,每页显示条数,[链接]); 
  14. //连接不设置则为当前链接 
  15. $page=isset($_GET['page']) ? $_GET['page'] : 1; 
  16. $p=new Page(100,7,$page,8); 
  17.    
  18. //生成一个页码数组(键为页码,值为链接) 
  19. echo "<pre>"
  20. print_r($p->getPages());  
  21.    
  22. //生成一个页码样式(可添加自定义样式) 
  23. //样式 共45条记录,每页显示10条,当前第1/4页 [首页] [上页] [1] [2] [3] .. [下页] [尾页] 
  24. echo $p->showPages(1);

Tags: PHP分页类

分享到: