> 백엔드 개발 > PHP 튜토리얼 > http://www.12306.cn/mormhweb/k php 매우 간단한 페이징 클래스

http://www.12306.cn/mormhweb/k php 매우 간단한 페이징 클래스

WBOY
풀어 주다: 2016-07-29 08:38:59
원래의
911명이 탐색했습니다.

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 곁면적 공유朋友有所帮助。

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿