如何从php文件中的tpl文件获取变量值

发布于 2024-11-30 13:08:19 字数 216 浏览 0 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

ぽ尐不点ル 2024-12-07 13:08:19

好吧,由于您的 smarty 变量是在编译模板之前分配给 smarty 变量的 PHP 变量,因此该变量应该已经位于您的 PHP 代码中的某个位置。寻找类似的东西:

$smarty->assign("product", $product);

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:

$smarty->assign("product", $product);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文