thinkPHP5 引入模板

有三種方法:
第一種: 直接使用 return view(); 助手函數
第二種: use think\View; class Admin extends View 見下
第三種: use think\Controller; class Admin extends Controller return $this->>fetch();
<?phpnamespace app\admin\controller;use think\View;      //第二種//use think\Controller;  //第三種class Admin extends View{    public function lst()    {        //第一種方法載入模板 使用助手函數 在config裏配置模板後綴  最簡單        //return  view();        //第二種方法載入模板,需指定後綴格式  config配置無效 use think\View  extends View        $view=new View(['view_suffix'  => 'htm',]);        return $view->fetch();        //第三種 use think\Controller ;   在config裏配置模板後綴   extends Controller        //return $this->>fetch();    }}
相關文章
相關標籤/搜索