Thinkphp 사용 페이지

더 읽 기
use Think\Page;

$pageCount = I('get.size',20); //  20 
$condition = array();
$count = $model->where($condition)->count();
$Page = new Page($count, $pageCount); 
$show = $Page->show();
$objs = $model->where($condition)->order('id desc')->limit($Page->firstRow . ',' . $Page->listRows)->select();
$this->page = $show;
$this->obj = $bjs;
      

좋은 웹페이지 즐겨찾기