在php / mysql查询中分配smarty变量

时间:2012-11-17 09:05:48

标签: php smarty phpfox

我在phpfox中工作。我想在mysql查询中使用smarty变量。 我已经搜索了很多并应用了stackoverflow中可用的所有方法/解决方案,但它无法正常工作。

1 个答案:

答案 0 :(得分: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);