Home > php教程 > php手册 > body text

PHP分页函数,最佳分页函数

WBOY
Release: 2016-06-13 10:44:46
Original
1081 people have browsed it

PHP分页函数备份,日期2011-09-25,修正了几个问题。

(1)当总页数为0时候多出计算的问题。

(2)当当前页为尾页时候,计算错误的问题。

(3)当总页数小与浮动页数时候的问题。

 

view plain
//新的分页函数 
function fenye($fenyeurl,$page,$totalnum,$perpage,$rewrite=0){ 
  $page = max($page,1); 
  $totalpage = ceil($totalnum/$perpage); 
  $rangepage = 6; 
 
  $startpage = max(1,$page - $rangepage); 
  $endpage   = min($totalpage,$startpage+$rangepage*2 - 1); 
  $startpage = min($startpage,$endpage - $rangepage*2 + 1); 
  if($startpage  
  $fileext = $rewrite ? '.html':''; 
  $html = '

    '; 
      $html .= '
  • 首页
  • '; 
      $html .= $page > 1 ? '
  • 上一页
  • ':''; 
      for($i = $startpage;$i     $html .= '
  • '.$i.'
  • '; 
        if($i == $totalpage) break; 
        } 
      $html .= $page 下一页':''; 
      $html .= '
  • 末页
  • '; 
      $html .= '
'; 
 
  return $html; 
  } 

 作者“default7”

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template