Heim >Backend-Entwicklung >PHP-Tutorial >smarty模板判断数组为空的方法_PHP教程

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

WBOY
WBOYOriginal
2016-07-13 09:51:13726Durchsuche

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...
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn