// 直接访问该页面を禁止します
if (basename($HTTP_SERVER_VARS['PHP_SELF']) == "pager.class.php") {
header("HTTP/1.0 404 が見つかりません");
}
クラスポケベル
{
/**メッセージの総数*/
var $infoCount;
/**総ページ数*/
var $pageCount;
/**ページごとに表示されるアイテムの数*/
var $items;
/**現在のページ番号*/
var $pageNo;
/**クエリの開始位置*/
var $startPos;
var $nextPageNo;
var $prevPageNo;
関数 Pager($infoCount, $items, $pageNo)
{
$this->infoCount = $infoCount;
$this->items = $items;
$this->pageNo = $pageNo;
$this->pageCount = $this->GetPageCount();
$this->AdjustPageNo();
$this->startPos = $this->GetStartPos();
}
関数 AdjustPageNo()
{
if($this->pageNo == '' || $this->pageNo
$this->ページ番号 = 1;
if ($this->pageNo > $this->pageCount)
$this->pageNo = $this->pageCount;
}
/**
*次のページ
*/
関数 GoToNextPage()
{
$nextPageNo = $this->ページ番号 1;
if ($nextPageNo > $this->pageCount)
{
$this->nextPageNo = $this->pageCount;
false を返します;
}
$this->nextPageNo = $nextPageNo;
true を返します;
}
/**
* 前のページ
*/
関数 GotoPrevPage()
{
$prevPageNo = $this->ページ番号 - 1;
if ($prevPageNo
{
$this->prevPageNo = 1;
false を返します;
}
$this->prevPageNo = $prevPageNo;
true を返します;
}
関数 GetPageCount()
{
return ceil($this->infoCount / $this->items);
}
関数 GetStartPos()
{
return ($this->pageNo - 1) * $this->items;
}
}
?>