class Helper_Page{
/**총 메시지 수*/
var $infoCount;
/**총 페이지*/
var $pageCount;
/**페이지당 표시되는 항목 수*/
var $items;
/**현재 페이지 번호*/
var $pageNo;
/**쿼리의 시작 위치*/
var $startPos;
/**다음 페이지*/
var $nextPageNo;
/**이전 페이지*/
var $prevPageNo;
함수 Helper_Page($infoCount, $items, $pageNo)
{
$this->infoCount = $infoCount;
$this->items = $items;
$this->pageNo = $pageNo;
$this->pageCount = $this->GetPageCount();
$this->AdjustPageNo();
$this->startPos = $this->GetStartPos();
}
function adjustPageNo()
{
if($this->pageNo == '' || $this->pageNo < 1)
$this-> 페이지번호 = 1;
if ($this->pageNo > $this->pageCount)
$this->pageNo = $this->pageCount;
}
/**
* 다음 페이지
*/
function GoToNextPage()
{
$nextPageNo = $this->pageNo 1;
if ($nextPageNo > $this->pageCount)
{
$this->nextPageNo = $this->pageCount;
거짓을 반환합니다.
}
$this->nextPageNo = $nextPageNo;
참을 반환합니다.
}
/**
* 이전 페이지
*/
function GotoPrevPage()
{
$prevPageNo = $this->pageNo - 1;
if ($prevPageNo < 1)
{
$this->prevPageNo = 1;
거짓을 반환합니다.
}
$this->prevPageNo = $prevPageNo;
참을 반환합니다.
}
function GetPageCount()
{
return ceil($this->infoCount / $this->items);
}
function GetStartPos()
{
return ($this->pageNo - 1) * $this->items;
}
}
以上就介绍了http://www.12306.cn/mormhweb/k php 곁면적 공유朋友有所帮助。