Home  >  Article  >  Backend Development  >  怎么在ecshop中的.dwt文件中调用方法,那段代码是什么

怎么在ecshop中的.dwt文件中调用方法,那段代码是什么

WBOY
WBOYOriginal
2016-06-13 11:08:171034browse

如何在ecshop中的.dwt文件中调用方法,那段代码是什么?
如何在ecshop中的.dwt文件中调用方法,那段代码是什么?是在.dwt写吗?

function a(){$smarty->assign('a',$a);$smarty->display('.dwt');}
我就是想知道在.dwt中是如何调用这个方法a的
------解决方案--------------------
<br />function a(){<br />$smarty->assign('a',$a);//smarty给模板赋值?如果是的话,那么这个框架的view用的是smarty<br />$smarty->display('.dwt');//如果是smarty,这里只是.dwt,恐怕不正确哦,到smarty的 display函数看看,<br />//a不是一个方法吧,是一个变量吧,在dwt中a是一个变量,但他不是个全局变量,只是smarty的一个变量,.dwt类型的视图文件,smarty会把它转成php文件,你搜索你服务器下的所有php文件,文件名很长带有%的就是转换后的文件,你打开看,搜索类似_tpl_var(具体我忘记了)的居知道是怎么回事了<br />}<br />

Statement:
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