用户名:
密 码: 记住
您当前的位置:首页 > 网络编程 > php教程

PHP分页类

时间:2015-01-23  来源:西部数据  作者:西部数据
  1. <?php 
  2. // 禁止直接访问该页面 
  3. if (basename($HTTP_SERVER_VARS['PHP_SELF']) == "pager.class.php") { 
  4.    header("HTTP/1.0 404 Not Found"); 
  5.  
  6. class Pager 
  7.    /** 总信息数 */ 
  8.    var $infoCount
  9.    /** 总页数 */ 
  10.    var $pageCount
  11.    /** 每页显示条数 */ 
  12.    var $items
  13.    /** 当前页码 */ 
  14.    var $pageNo
  15.    /** 查询的起始位置 */ 
  16.    var $startPos
  17.    var $nextPageNo
  18.    var $prevPageNo
  19.   
  20.    function Pager($infoCount$items$pageNo
  21.    { 
  22.      $this->infoCount = $infoCount
  23.      $this->items   = $items
  24.      $this->pageNo  = $pageNo
  25.      $this->pageCount = $this->GetPageCount(); 
  26.      $this->AdjustPageNo(); 
  27.      $this->startPos = $this->GetStartPos(); 
  28.    } 
  29.    function AdjustPageNo() 
  30.    { 
  31.      if($this->pageNo == '' || $this->pageNo < 1) 
  32.        $this->pageNo = 1; 
  33.      if ($this->pageNo > $this->pageCount) 
  34.        $this->pageNo = $this->pageCount; 
  35.    } 
  36.    /** 
  37.    * 下一页 
  38.    */ 
  39.    function GoToNextPage() 
  40.    { 
  41.      $nextPageNo = $this->pageNo 1; 
  42.      if ($nextPageNo > $this->pageCount) 
  43.      { 
  44.        $this->nextPageNo = $this->pageCount; 
  45.        return false; 
  46.      } 
  47.      $this->nextPageNo = $nextPageNo
  48.      return true; 
  49.    } 
  50.    /** 
  51.    * 上一页 
  52.    */ 
  53.    function GotoPrevPage() 
  54.    { 
  55.      $prevPageNo = $this->pageNo - 1; 
  56.      if ($prevPageNo < 1) 
  57.      { 
  58.        $this->prevPageNo = 1; 
  59.        return false; 
  60.      } 
  61.      $this->prevPageNo = $prevPageNo
  62.      return true; 
  63.    } 
  64.    function GetPageCount() 
  65.    { 
  66.      return ceil($this->infoCount / $this->items); 
  67.    } 
  68.    function GetStartPos() 
  69.    { 
  70.      return ($this->pageNo - 1) * $this->items; 
  71.    } 
  72. ?> 
来顶一下
返回首页
返回首页
推荐资讯
WiFi太不安全:7岁女孩11分钟内入侵公共网络 WiFi太不安全:7岁女孩11分钟内入侵近期刚刚发布研究说WiFi网络能获得人们手机里多少私人信息,
不服跑个分?人工智能也出现“刷分”乱象 不服跑个分?人工智能也出现“刷分2014年,人工智能领域突然爆发,成为了科研和科技创业的热门
相关文章
栏目更新
栏目热门