thinkphp的分页格式自定义
时间:2014-04-30 22:27:39
收藏:0
阅读:343
public function index(){
header(‘Content-Type:text/html;charset=utf-8 ‘);
$M = M("Constant");
$count = $M->where($where)->count();
import("ORG.Util.Page"); // 导入分页类
$d = new Page($count,5); //分页
$d -> setConfig(‘header‘, ‘条记录‘);
$d -> setConfig(‘theme‘, "共 %totalPage% 页/%totalRow%%header% %first% %upPage% %linkPage% %downPage% %end%");//(对thinkphp自带分页的格式进行自定义)
$list = $M->order(‘id desc‘)->limit($d->firstRow.‘,‘.$d->listRows)->select();
$dd=$d->show();
$this->assign(‘list‘,$list);
$this->assign(‘page‘,$dd);
$this->display();
}
header(‘Content-Type:text/html;charset=utf-8 ‘);
$M = M("Constant");
$count = $M->where($where)->count();
import("ORG.Util.Page"); // 导入分页类
$d = new Page($count,5); //分页
$d -> setConfig(‘header‘, ‘条记录‘);
$d -> setConfig(‘theme‘, "共 %totalPage% 页/%totalRow%%header% %first% %upPage% %linkPage% %downPage% %end%");//(对thinkphp自带分页的格式进行自定义)
$list = $M->order(‘id desc‘)->limit($d->firstRow.‘,‘.$d->listRows)->select();
$dd=$d->show();
$this->assign(‘list‘,$list);
$this->assign(‘page‘,$dd);
$this->display();
}
评论(0)