thinkphp的分页格式自定义
2020-12-10 08:18
标签:thinkphp 分页 自定义分页格式 thinkphp的分页格式自定义 标签:thinkphp 分页 自定义分页格式 原文地址:http://blog.csdn.net/qq1355541448/article/details/24720639
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();
}
上一篇:js:深入函数(函数是对象)