我在 phpfox 工作。我想在 mysql 查询中使用 smarty 变量。我进行了很多搜索并应用了stackoverflow中可用的所有方法/解决方案,但它不起作用。
问问题
609 次
1 回答
0
使用get_template_vars获取 php 代码中的模板变量
$myVar = $smarty->get_template_vars('aPin');
echo $myVar.ITEMID;
还可以尝试 get_template_vars() 来获取所有分配变量的列表
$myvar = $smarty->get_template_vars();
print_r($myvar);
于 2012-11-17T09:19:09.860 回答