随笔 - 1330  文章 - 1  评论 - 378  阅读 - 482万 
复制代码
<?
class page{
 
var $output;
 
var $file;
 
var $pagestr = "page";
 
var $perpage;
 
var $current_page;
 
var $send_str;
 
var $total_page;
 
var $page_start;
 
var $page_end;
 
var $total;

 
function sendstr($data){
                        
foreach($data as $k=>$v)
                               {
                               
$j++;
                               
if($j==1)$this->send_str.='/'.$k.'_'.$v;
                               
else $this->send_str.='_'.$k.'_'.$v;
                               }
                               
return $this->send_str;
                        }

 
function set($perpage,$total,$current_page = false)
         {
         
global $HTTP_SERVER_VARS,$HTTP_GET_VARS;

         
if($total<$perpage){$this->total_page = 1;}
         
elseif(($total%$perpage)!= 0){$this->total_page = ceil($total/$perpage);}
         
else {$this->total_page = intval($total/$perpage);}

         
if(!$current_page or $current_page<1){$current_page = 1;}
         
else{$current_page = $_GET[$this->pagestr];}

         
$this->perpage = $perpage;
         
$this->current_page = $current_page;
         
$this->total = $total;

         
if(!$this->file){$this->file = $_SERVER['SCRIPT_NAME'? $_SERVER['SCRIPT_NAME']:$_SERVER['PHP_SELF'];}
         
$this->file.=$this->send_str;
         
$split = '_';

         
if($this->total_page>1){
                          
$this->output.='共<font color="#FF0000"><b>'.$total.'</b></font>条记录 每页显示<font color="#FF0000">'.$perpage.'</font>条 ';
                          
if($current_page>10){
                                              
$this->output.='<a href="'.$this->file.$split.$this->pagestr.'_'.($current_page-10).".htm\"".' title="显示前10页">前10页</a>&nbsp;';
                                              }
                          if(
$current_page>1) {
                                              
$this->output.='<a href="'.$this->file.$split.$this->pagestr.'_'.($current_page-1).".htm\"".' title="上一页">上一页</a>&nbsp;';
                                              }
                          $start = floor($current_page/10)*10;
                          $end=$start+9;

                          if($start<1)$start = 1;
                          if($end>$this->total_page)$end = $this->total_page;

                          for($i=$start;$i<=$end;$i++)
                             {
                             if($current_page==$i){
                                                  $this->output.=
'<font color="#FF0000">'.$i.'&nbsp;</font>';
                                                  }
                             else{
                                 $this->output.=
'[<a href="'.$this->file.$split.$this->pagestr.'_'.$i.".htm\"".'>'.$i.'</a>]&nbsp;';
                                 }

                              }
                          
if($current_page<$this->total_page){
                                                             
$this->output.='<a href="'.$this->file.$split.$this->pagestr.'_'.($current_page+1).".htm\"".' title="下页">下页</a>&nbsp;';
                                                             }

                          if((
$this->total_page-$current_page)>=10){
                                                                   
$this->output.='<a href="'.$this->file.$split.$this->pagestr.'_'.($current_page+10).".htm\"".' title="显示后10页">后10页</a>&nbsp;';
                                                                   }

                          }
                          else $this->output="&nbsp;";

         }
 function limit(){
 return (($this->current_page-1)*$this->perpage.
','.$this->perpage);
 }

 function get_start_end(){
 $begin=($this->current_page-1)*$this->perpage;
 $end=$this->total-$begin-$this->perpage;
 if($end<0)$end=0;
 $start=$this->total-$begin-1;
 return array(
'start'=>$start,'end'=>$end);
 }
}
?>
复制代码
posted on   钱途无梁  阅读(311)  评论(0编辑  收藏  举报
编辑推荐:
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
阅读排行:
· winform 绘制太阳,地球,月球 运作规律
· AI与.NET技术实操系列(五):向量存储与相似性搜索在 .NET 中的实现
· 超详细:普通电脑也行Windows部署deepseek R1训练数据并当服务器共享给他人
· 【硬核科普】Trae如何「偷看」你的代码?零基础破解AI编程运行原理
· 上周热点回顾(3.3-3.9)
点击右上角即可分享
微信分享提示