Maison >développement back-end >tutoriel php >smarty模板判断数组为空的方法_PHP教程

smarty模板判断数组为空的方法_PHP教程

WBOY
WBOYoriginal
2016-07-13 09:51:13729parcourir

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

 这里主要介绍两种方法:

1. 用count来取得数组的下标个数

下面例子中,如果$array为空则不输出任何数据

1

2

3

{if $array|@count neq 0 }

// array is empty

{/if}

2. 直接判断

1

2

3

{ if $array neq ""}

//array is empty

{/if}

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/1014277.htmlTechArticlesmarty模板判断数组为空的方法 这里主要介绍两种方法: 1. 用count来取得数组的下标个数 下面例子中,如果$array为空则不输出任何数据 1 2...
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