tp3和tp5的分页写法

Posted 娜娜很乖的

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tp3和tp5的分页写法相关的知识,希望对你有一定的参考价值。

tp5的分页:

public function index()
    {
        $page = input(‘get.page‘);
        if (isset($page) && null !== $page) {
            $cpage = $page;
        }
        else {
            $cpage = 1;
        }
        $options=[
            ‘page‘=>$cpage,
            ‘path‘=>url(‘index‘)
        ];
        $list=Db::name(‘web_member‘)->paginate(10,false,$options);
        $this->assign(‘list‘, $list);
        return $this->fetch();
    }

html的展示页中要加上   {$list->render()}   来展示分页的页数

 

tp3的分页:

 public function paylist(){
        $p= I("get.p/d",1);
        $model = M("pay");
        $count = $model->count();
        $Page = new Page($count,10);
        $show = $Page->show();
        $data = $model->order(‘id desc‘)->page($p.‘,10‘)->select();
        $this->assign(‘data‘,$data);
        $this->assign(‘page‘,$show);
        $this->display();
    }

在html的展示页中要加上   {$page}  来展示分页的页数

以上是关于tp3和tp5的分页写法的主要内容,如果未能解决你的问题,请参考以下文章

关于tp5分页的写法

再看thinkphp5分页类使用

tp5.0分页样式调控

tp5的ajax分页实现

tp5的 LayUI分页样式实现

oracle分页查询语句怎么写每页查询10条