Maison >php教程 >php手册 >smarty模板中判断数组为空的方法

smarty模板中判断数组为空的方法

WBOY
WBOYoriginal
2016-06-06 20:10:131552parcourir

在smarty模板中判断数组是否为空有两种方法,下面一一举例分享。 (1)使用php count函数 {if $array|@count gt 0} {/if} (2)这个写法很奇怪,今天是因为第一种方法不行了才在网上找找看,就找到下面这种奇怪的写法了。 {if count($array) gt 0} {/if} 原

在smarty模板中判断数组是否为空有两种方法,下面一一举例分享。

(1)使用php count函数

{if $array|@count gt 0}
… …
{/if}

(2)这个写法很奇怪,今天是因为第一种方法不行了才在网上找找看,就找到下面这种奇怪的写法了。

{if count($array) gt 0}
… …
{/if}

Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn