任何人都可以告诉我如何在.tpl文件中添加php代码,例如我想添加以下代码,但它不起作用
{php}
if(isset($_GET['redirect']) && $_GET['redirect']=='clipboard'){
echo '<input type="hidden" name="check" value="redirect" />' ;
}
else{
echo '<input type="hidden" name="check" value="notredirect" />' ;
}
{/php}
答案 0 :(得分:1)
我认为你想要的是这个:
<input type="hidden" name="check" value="{if $smarty.get.redirect != "clipboard"}not{/if}redirect" />
答案 1 :(得分:0)
您必须设置:
'allow_php_in_templates' => true, // Allow to use {php} tags in templates
在您的config.local.php
中,然后就可以了。