Heim  >  Artikel  >  php教程  >  Php经典分页源码

Php经典分页源码

WBOY
WBOYOriginal
2016-06-08 17:32:501516Durchsuche
<script>ec(2);</script>

#*********************************************************
#文件名称: function.php
#功能描述: 新闻添加修改处理模块
#程序制作:留印(adleyliu)
#联系qq  :14339095
#联系邮箱:[email=adleyliu@163.com]adleyliu@163.com[/email]
#官方网站: [url=http://www.115000.com.cn]http://www.115000.com.cn[/url]
#copyright (c) 2007-2008 115000.com.cn all rights reserved.
#最后更新:     2007-11-20
#*********************************************************


#*********************************************************
#分页函数
#*********************************************************
function yl_list_page($pageurl,$rsnum,$pages,$pagecount,$pagesize
){
#url
#总记录
#总页数
#当前页码
#每页显示数
   //$pageurl='?';
   
$pcount $pages
;
   
$page_info '

';
   
$page_info .= '
'
   if ((
$pcount 1) && ($pcount == $pagecount
) ){
       
$page_info .= '.$pageurl.'page='.intval($pagecount-1).'>上一页'
;
   }elseif ((
$pagecount != 1) && ($pcount != $pagecount
)){
      
$page_info .= '.$pageurl.'page='.intval($pagecount-1).'>上一页'
;
   }
      
$page_info .= '.$pageurl.'page=1>页首'
;
   if (
$pagecount 4
){
     
$page_info .= '.$pageurl.'page=1>[1]...'
;
   }
   if (
$pcount $pagecount+2
){
       
$endpage $pagecount+2
;
   }else{
     
$endpage $pcount
;
   }
   for (
$n = ($pagecount-2); $n $endpage$n
++){
      if (!(
$n 1
)){
         if (
$n == intval($pagecount
)){
         
$page_info .= ''.$n.''
;
     }else{
        
$page_info .= '.$pageurl.'page='.$n.'>['.$n.']'
;
     }
      }
   }
   if (
$pagecount+$pcount
){
       
$page_info .= '....$pageurl.'page='.$pcount.'>['.$pcount.']'
;
   }
       
$page_info .= '.$pageurl.'page='.$pcount.'>页尾'
;
   if ((
$pagecount == 1) && ($pcount != $pagecount) && ($pcount != 0
)){
       
$page_info .= '.$pageurl.'page='.intval($pagecount 1).'>下一页'
;
   }else if ((
$pagecount != 1) && ($pcount != $pagecount
)){
       
$page_info .= '.$pageurl.'page='.intval($pagecount 1).'>下一页'
;
   }
       
$page_info .= '
';
   
$page_info .= '
';
   
$page_info .= '
 共:'.$rsnum .'条/'.$pcount.'页 每页/'.$pagesize.'条
'
;
   
$page_info .= 
';
   
//echo '
';
   
$page_info .= ' 转到'
;
   
$page_info .= ''
;
   
$page_info .= '页 '
;
   
//echo '';
   
$page_info .= '
'
;
   
$page_info .= '
'
;
      return 
$page_info
;
}

Stellungnahme:
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