thinkPHP3.2.3?? ?? ??? ??? ??????
public function index(){
$article=D('article');
$keyboard=isset($_GET['keyboard'])?$_GET['keyboard']:'? ???? ?????? ' ;
$where=[]; //?? ??
if($keyboard){ //?? ??? ??
$where['keyboard']=['like',"%$keyboard%"];
}
$count= $article->where($where)->count();// ?? ??? ???? ? ??? ? ??
$Page = new ThinkPage($count,5);// ????? ??? ???? ???? ? ??? ?? ? ???? ???? ??? ? (25)
$show = $Page->show();// ???? ?? ??
$list = $article-> where($where)->order( 'time desc')->limit($Page->firstRow.','.$Page->listRows)->select();
$this-> ;??('list',$list) ;//??? ?? ??
$this->ass('page',$show);//??? ?? ??
$this->display();
?? ???? ??? ??? ??? ?????.