thinkphp5菜鸟教程 thinkphp怎么实现分页排序?
浏览量:2706
时间:2021-03-16 10:13:45
作者:admin
thinkphp怎么实现分页排序?
$user=m(“user”)//实例化用户对象
$count=$user->where(“status=1”)->count()//查询满足要求的记录总数
$page=newthinkpage($count,25)//实例化传入记录的总数和每页显示的记录数(25)
$show=$page->show()//显示输出页
$list=$user->where(“status=1”)->order(“createTime desc”)->limit($page->firstrow)。", ". $page->listrows)->select()
$this->assign(“page”,$show)
非常简单,您可以试试
thinkphp5菜鸟教程 thinkphp实例教程 thinkphp分页器
版权声明:本文内容由互联网用户自发贡献,本站不承担相关法律责任.如有侵权/违法内容,本站将立刻删除。