php相当简单的分页类

2015-01-24信息快讯网

代码比较简单,学习php类的朋友,可以看下

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;
}
/**
* 下一页
*/
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 < 1)
{
$this->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;
}
}
PHP中json_encode、json_decode与serialize、unserialize的性能测试分析
IIS下PHP连接数据库提示mysql undefined function mysql_connect()
php UTF-8、Unicode和BOM问题
php imagecreatetruecolor 创建高清和透明图片代码小结
php getimagesize 上传图片的长度和宽度检测代码
php 使用post,get的一种简洁方式
PHP CURL模拟GET及POST函数代码
php file_get_contents函数轻松采集html数据
Fatal error: Call to undefined function curl_init()解决方法
mysql From_unixtime及UNIX_TIMESTAMP及DATE_FORMAT日期函数
PHP编程过程中需要了解的this,self,parent的区别
php中$this-&gt;含义分析
php self,$this,const,static,-&gt;的使用
php面向对象全攻略 (三)特殊的引用“$this”的使用
PHP nl2br函数 将换行字符转成 &lt;br&gt;
AspNetAjaxPager,Asp.Net通用无刷新Ajax分页控件,支持多样式多数据绑定
smarty section简介与用法分析
php仿discuz分页效果代码
PHP通用分页类page.php[仿google分页]
php的curl实现get和post的代码
jq的get传参数在utf-8中乱码问题的解决php版
php array_merge下进行数组合并的代码
php utf-8转unicode的函数第1/2页
php下通过POST还是GET来传值
php Undefined index和Undefined variable的解决方法
php下判断数组中是否存在相同的值array_unique
PHP5.2下chunk_split()函数整数溢出漏洞 分析
escape unescape的php下的实现方法
PHP5中的this,self和parent关键字详解教程
PR值查询 | PageRank 查询
<b>一些常用的php函数</b>
©2014-2024 dbsqp.com