Smarty PHP添加{if}语句并包含一个tpl

时间:2015-06-12 14:29:17

标签: php smarty3

我目前第一次使用Smarty-php,但是我在下面的{include}周围放置了一个if语句,我正在努力。

{include './header.tpl'}

每次我执行以下操作时都会收到500错误。

{if $smarty.get.special is not "ajax"}
    {include './header.tpl'}
{/if}

1 个答案:

答案 0 :(得分:1)

应该是:

{if $smarty.get.special != "ajax"}
    {include file='./header.tpl'}
{/if}

is [not]语法可用于检查值是(或不是)偶数还是奇数。