显示('字符串:'。$ template_string)不起作用

时间:2018-04-29 18:41:42

标签: php html templates smarty smarty3

我尝试使用

$template = "<h1>Hello {name},</h1>";
$smarty->assign('name','Christian');
$output = $smarty->fetch('string:' . $template);
echo $output;

结果是:

Hello ,

它输出模板,但不显示模板中的变量。我使用最新的Smarty 3.1.32有什么问题感谢帮助Christian

1 个答案:

答案 0 :(得分:0)

你可以在php中使用smarty中的变量。所以它应该是:$template = "<h1>Hello {$name},</h1>";