ホームページ > バックエンド開発 > 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;
function Helper_Page($infoCount, $items, $pageNo)
{
$this->infoCount = $infoCount;
$this->items = $items;
$this->ページ番号 = $ページ番号;
$this->pageCount = $this->GetPageCount();
$this->AdjustPageNo();
$this->startPos = $this->GetStartPos();
}
function AdjustPageNo()
{
if($this->pageNo == '' || $this->pageNo $this->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;
false を返します。
}
$this->nextPageNo = $nextPageNo;
true を返します。
}
/**
* 前のページ
*/
function GotoPrevPage()
{
$prevPageNo = $this->pageNo - 1;
if ($prevPageNo {
$this->prevPageNo = 1;
false を返します。
}
$this->prevPageNo = $prevPageNo;
true を返します。
}
function GetPageCount()
{
return ceil($this->infoCount / $this->items);
}
function GetStartPos()
{
return ($this->pageNo - 1) * $this->items;
}
}

以上の介绍了http://www.12306.cn/mormhweb/k php相当分页分類、http://www.12306.cn/mormhweb/k面の内容を含み、PHP教程有関心を希望します朋友が助けてくれます。

関連ラベル:
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート