Maison >php教程 >php手册 >五分页类

五分页类

WBOY
WBOYoriginal
2016-06-13 10:24:37959parcourir

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 pageNo = 1; if ($this->pageNo > $this->pageCount) $this->pageNo = $this->pageCount; } /** * 下一页 */ function GoToNextPage() { $nextPageNo = $this->pageNo + 1; if ($nextPageNo > $this->pageCount) { $this->nextPageNo = $this->pageCount; return false; } $this->nextPageNo = $nextPageNo; return true; } /** * 上一页 */ function GotoPrevPage() { $prevPageNo = $this->pageNo - 1; if ($prevPageNo prevPageNo = 1; return false; } $this->prevPageNo = $prevPageNo; return true; } function GetPageCount() { return ceil($this->infoCount / $this->items); } function GetStartPos() { return ($this->pageNo - 1) * $this->items; } } ?>

Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Article précédent:什么是PHPArticle suivant:xzn_html_tree1.0可折叠大纲