我尝试使用
$template = "<h1>Hello {name},</h1>";
$smarty->assign('name','Christian');
$output = $smarty->fetch('string:' . $template);
echo $output;
结果是:
Hello ,
它输出模板,但不显示模板中的变量。我使用最新的Smarty 3.1.32有什么问题感谢帮助Christian
答案 0 :(得分:0)
你可以在php中使用smarty中的变量。所以它应该是:$template = "<h1>Hello {$name},</h1>";
。