方法定义
$this->template->fetch(string $view); // $view 要输出的模版路径(相对路径)
举例说明
我在控制器member中不想直接输出登陆模版,而是先获取内容,再进行一些处理后输出。
$html = $this->template->fetch('member/login.html'); $html = str_replace("REFERURL","",$html); echo $html;