标签: php smarty
可以通过这个传递从php到tpl:
PHP:
$smarty->assign('variable',$foo);
TPL:
{$variable}
但我不知道是否可以将变量从tpl传递给php ...
答案 0 :(得分:1)
我从未尝试过,但请查看get_template_vars()和{php}标记。也许这就是你要找的东西。