Home > Backend Development > PHP Tutorial > thinkphp include 变量无法输出,该如何解决

thinkphp include 变量无法输出,该如何解决

WBOY
Release: 2016-06-13 10:06:09
Original
1140 people have browsed it

thinkphp include 变量无法输出
事情是这样的 我我的indexAction 下 写了2个方法 head() tui() index()
2个方法 都输出到各自的模板里面了(模板也显示了) 然后 在index()的模板中 include head 和tui 然后出事了

head的内容都输出了 tui的内容值输出了 文本 tui的变量都没输出 求解决下

------解决方案--------------------
建议不要这样写 如果要调用head和tui的变量 你把把方法写到model里面去
------解决方案--------------------
包括了文件,还是得在同一个model里面写,比如index,无论你包含了header.html还是foot.html,都必须在index里面写,

public function index(){
//这里写header和foot的相关
$this->display();
}

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template