Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1622108
  • 博文数量: 1481
  • 博客积分: 26784
  • 博客等级: 上将
  • 技术积分: 17045
  • 用 户 组: 普通用户
  • 注册时间: 2011-07-12 09:22
文章分类

全部博文(1481)

文章存档

2014年(10)

2013年(353)

2012年(700)

2011年(418)

分类: 系统运维

2012-03-27 09:33:24

class Page {
private $table;//查询的表
private $thisPage;//当前页
private $arr_re;//返回结果数组
private $limit;//每页显示的行数
private $count;//表总的记录数
private $reStr;//返回的分页字符串
private $baseName;//
function __construct($table){
$this->table=$table;
$sql='select count(*) from '.$table;
$res=mysql_query($sql);
$arr=mysql_fetch_row($res);
mysql_free_result($res);//销毁结果集
$this->count=$arr[0];//计算出表中总的行数
$this->baseName=basename(__FILE__);
}
/**
* @thisPage int //开始从第几天记录开始显示,一般是从url获取的,所以要验证是否为整数
* @limit int//每页显示的记录数
*/
public function getArray ($thisPage,$limit) {//返回查询二维数组
$pat="/^[1-9]+[0-9]*$/";//验证开始位置是否为正整数
if(!preg_match($pat,$thisPage)){
$thisPage=1;
}
$thisPage=(($thisPage*$limit)>$this->count)?ceil($this->count/$limit):$thisPage;
$this->thisPage=$thisPage;
$this->limit=$limit;
$sql='select * from '.$this->table.' limit '.(($thisPage-1)*$limit).','.$limit;
$result=mysql_query($sql);
while($arr=mysql_fetch_assoc($result)){
$this->arr_re[]=$arr;
}
mysql_free_result($result);//销毁结果集
return $this->arr_re;
}
/**
*@type int //返回分页字符串的类型,暂时只支持一种类型
*
*/
public function showPage ($type=1) {//返回分页
$type='page_'.$type.'()';
return $this->page_1();
}

private function page_1() {
$pageNum=ceil($this->count/$this->limit);//总的页数
if($this->thisPage==1){//第一页
$this->reStr.='首页上一页';
}else{
$this->reStr.='首页上一页< /a>';
}
if($this->thisPage>5){
$this->reStr.='
...';
}
$tmp=$this->thisPage%5?$this->thisPage%5:5;
for($i=$tmp-1;$i>0;$i--){//当前页前面的页数
$this->reStr.=' '.($this->thisPage-$i).'';
}
$this->reStr.=''.$this->thisPage.'';//当前页
for($i=1;$i<=5-$tmp;$i++){//当前页后面的页数
$this->reStr.=' '.($this->thisPage+$i).'';

}
if(($this->count/$this->limit-$this->thisPage)>=4){
$this->reStr.=' ...';
}
if($this->thisPage==$pageNum){//最后一页
$this->reStr.='下一页 尾页';
}else{
$this->reStr.=' 下一页< /a> 尾页';
}
return $this->reStr;
}
}
?>

原文地址:

阅读(675) | 评论(1) | 转发(0) |
给主人留下些什么吧!~~

小豆熊2012-03-27 22:36:21

分页的啊~