基本上我正在为我的阵列添加一些if else。
{if $array| count eq 0 || $array| count lt 10}
<p>equal to 0, less than 10</p>
{/if}
{if $array| count gte, ge 10}
<p>greater than or equal to 10</p>
{else}
<p>blah</p>
{/if}
哪个不行。那可能是什么问题?
答案 0 :(得分:1)
{if $array| count lt 10}
<p>equal to 0, less than 10</p>
{/if}
{if $array| count ge 10}
<p>greater than or equal to 10</p>
{else}
<p>blah</p>
{/if}