thinkphp实现分页类 几行代码搞定

注意:这个类首先的位置是控制器里的!!!首先看懂与否,你要回tp框架简单的用法,后看着各类,用这个类就简单了呵呵,求知者加油!!

<?php
class FenyeAction extends Action {
 public function fenye(){
       $model=M('stu_news');
     import("ORG.Util.Page"); //ʵ���ҳ��
           $count = $model->count();    //��������  
           $page = new Page ( $count, 2 );  
            $rows=$model->limit($page->firstRow.','.$page->listRows)->order('id desc')->select();  
            $pages = $page->show ();  
        $this->assign ( "info", $pages );
  $this->assign('list',$rows);
        $this->display("fenye");
 }
}

你可能感兴趣的:(类,分页)