复制代码 代码如下:
$nav='';//用来保存页数的一个变量
for ($i=1;$i<=13;$i++)
{
$nav.="<a href='index.php?page=".$i."'>第".$i."页</a> ";
}
复制代码 代码如下:
$step= floor(($pageNow-1)/10)*10+1;
for ($i=$step;$i<=$step+10;$i++)
{
$nav.="<a href='index.php?page=".$i."'>第".$i."页</a> ";
}
复制代码 代码如下:
<?php
/**
* $sql语句:①获取数据②获取总记录数
*/
class fenyePage{
public $pageSize=5;//每页显示的数量-->程序员指定的
public $rowCount;//这是从数据库中获取的(形如SELECT COUNT(id) FROM TABLE)用来保存总共有多少条记录
public $pageNow;//通过$_GET['page']获取的,用来保存当前所在的页码
public $pageCount;//计算得到的,用来保存总共有多少页
public $res_arr;//用来保存要显示到页面的数据(比如保存SELECT * FROM TABLE LIMIT 0,10 检索的数据)
public $nav;//显示第几页第几页的导航条
/**
* 取得当前页面的超链接
*
* @author 小飞 2012/5/30
*/
public function getLink()
{
$this->nav='';
$this->pageCount=ceil(($this->rowCount/$this->pageSize));
$step= floor(($this->pageNow-1)/10)*10+1;
if ($this->pageNow>10)
{
$this->nav.=" <a href='index.php?page=".($step-1)."'> << </a> ";//整体每10页向前翻
}
if ($this->pageNow!=1)
{
$this->nav.="<a href='index.php?page=".($this->pageNow-1)."'> 上一页</a> ";
}
if ($this->pageNow!=1)
{
$this->nav.="<a href='index.php?page=1'>首页</a> ";
}
for ($start=$step;$start<$step+10 && $start<=$this->pageCount;$start++)
{
$this->nav.="<a href='index.php?page=".$start."'>".$start."</a> ";
}
if ($this->pageNow!=$this->pageCount)
{
$this->nav.="<a href='index.php?page=".$this->pageCount."'>末页</a> ";
}
if ($this->pageNow!=$this->pageCount)
{
$this->nav.=" <a href='index.php?page=".($this->pageNow+1)."'>下一页</a>";
}
if ($this->pageCount>10 && $this->pageNow<$this->pageCount-8){
$this->nav.=" <a href='index.php?page=".($step+10)."'> >> </a>";//整体每10页向后翻
}
$this->nav.="/共有".$this->pageCount."页";
}
}
?>
复制代码 代码如下:
/**
* 根据指定的用户id,查询该用户的历史订餐记录
*
* @author 小飞 2012/5/30
* @param $id 用户id
* @param $fenye 实例化的一个对象,用来处理分页
* @todo $sql1语句 "select * from table where * limit 0,10" 该sql语句主要用来检索数据库中的数据,用以显示在view层
* @todo $sql2语句 "select count(id) from table" 该sql语句用来得出总的数据量
*/
public function showorder($id=null,$fenye=null)
{
$db = $this->getAdapter();
$select=$db->select();
$select->from(array('o' => 'order'),array('o.id','o.user_id','o.user_name','o.food_name','o.food_price','o.order_time','o.order_state'));
if ($id!=null){
$select->where('o.user_id=?',$id);
}
$select->join(array('d'=>'department'),'o.dep_id = d.id','d.dep_name');
if($fenye!=null){
$select->limit($fenye->pageSize,($fenye->pageNow-1)*$fenye->pageSize);
}
$sql1=$select->__toString();
//该sql语句主要用来计算总的数据量
$sql2="SELECT COUNT(id) FROM `order`";
$fenye->res_arr=$db->fetchAll($sql1);//将要显示的数据存储到分页类的$res_arr属性当中,方便调用
$rowCount=$db->fetchAll($sql2);//将表中的总数据量保存到分页类的rowCount属性当中
$fenye->rowCount=$rowCount[0]['COUNT(id)'];
$fenye->getLink();
return $fenye->res_arr;
}
新闻热点
疑难解答