我目前第一次使用Smarty-php,但是我在下面的{include}周围放置了一个if语句,我正在努力。
{include './header.tpl'}
每次我执行以下操作时都会收到500错误。
{if $smarty.get.special is not "ajax"}
{include './header.tpl'}
{/if}
答案 0 :(得分:1)
应该是:
{if $smarty.get.special != "ajax"}
{include file='./header.tpl'}
{/if}
is [not]
语法可用于检查值是(或不是)偶数还是奇数。