如何从php文件中的tpl文件获取变量值
我在 tpl 文件中有变量 {分配 var="por" value=$product.productid}
如何在我的 php 文件中使用上述变量?
我已经尝试过:
global $por;
但它不起作用......请尽快帮助我...... (注:变量$por有包含3个值)
I have variable in tpl file as{assign var="por" value=$product.productid}
How can I use that above variable in my php file?
I have tried as:
global $por;
but it not works...Please help me soon....
(note:The variable $por have contains 3 values)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,由于您的 smarty 变量是在编译模板之前分配给 smarty 变量的 PHP 变量,因此该变量应该已经位于您的 PHP 代码中的某个位置。寻找类似的东西:
Well, since your smarty variables are PHP variables assigned to the smarty ones before the template has been compiled, the variable should already be somewhere in your PHP code. Look for something like: