VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > PHP >
  • PHP分页类

  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. ?> 
  73.  

出处:http://www.phpfensi.com/php/20131210/916.html


相关教程