在控制器中使用 $this->assign() 方法给模板赋值 如下,在控制器中给模板赋值一个变量 str public function index(){ $str = '这是变量'; $this->assign("str",$str); $this->display(); } 注意:assign() 方法必须在 display…
在控制器中,我们可以定义输出的模板。使用方法 $this->display(); 一般输出模板如下,这里是匹配当前应用下 View目录中的 Index目录(控制器)下的 index.html模板(方法名) public function index(){ $this->display(); //匹配当前应用下 View 目录下的 Ind…