PHP
·
发表于 5年以前
·
阅读量:8293
class Helper_Page{
/ 总信息数 */
var $infoCount;
/* 总页数 /
var $pageCount;
/ 每页显示条数 */
var $items;
/ 当前页码 */
var $pageNo;
/* 查询的起始位置 /
var $startPos;
/ 下一页 */
var $nextPageNo;
/* 上一页 /
var $prevPageNo;
function 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->pageNo = 1;
if ($this->pageNo > $this->pageCount)
$this->pageNo = $this->pageCount;
}
/**