ホームページ > php教程 > php手册 > PHP の非常に単純なページング クラス

PHP の非常に単純なページング クラス

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
リリース: 2016-06-13 12:26:39
オリジナル
965 人が閲覧しました

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 < 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;
false を返します。
}
$this->nextPageNo = $nextPageNo;
true を返します。
}
/**
* 前のページ
*/
関数 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;
}
}

ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
最新の問題
PHP 拡張子 intl
から 1970-01-01 08:00:00
0
0
0
phpのデータ取得?
から 1970-01-01 08:00:00
0
0
0
PHP GET エラー レポート
から 1970-01-01 08:00:00
0
0
0
phpを上手に学ぶ方法
から 1970-01-01 08:00:00
0
0
0
人気のおすすめ
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート