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