Home > Backend Development > PHP Tutorial > php中empty和array_filter在判断数组是否为空的时候有什么区别

php中empty和array_filter在判断数组是否为空的时候有什么区别

WBOY
Release: 2016-06-06 20:49:59
Original
1019 people have browsed it

弱弱的请教一个问题, 例如下面的代码,在判断数组是否为空的时候,有什么区别呢?

<code>$arr = array('a'=>'');

if(array_filter($arr)) echo 'succ';
else echo 'failed';

if(empty($arr)) echo 'succ';
else echo 'failed';
</code>
Copy after login
Copy after login

回复内容:

弱弱的请教一个问题, 例如下面的代码,在判断数组是否为空的时候,有什么区别呢?

<code>$arr = array('a'=>'');

if(array_filter($arr)) echo 'succ';
else echo 'failed';

if(empty($arr)) echo 'succ';
else echo 'failed';
</code>
Copy after login
Copy after login

这段代码会打印两个failed.

首先我们要讨论数组转化为布尔值(true/false)的问题。
手册中说:不包括任何元素的数组为false, 其余均为true.
http://www.php.net/manual/zh/language.types.boolean.php#language.types.boolean.casting

然后我们来看这两个函数的行为。

array_filter会对参数进行过滤,返回一个新的数组,默认情况下会剔除所有值为false的元素。
空字符串会被转换为false, 于是$arr中唯一的一个元素被删除了,返回了一个空数组,空数组被转换为false, 于是打印了第一个failed.

(手册中说)empty的行为大多数情况下,等价于将参数转换为布尔值并取反,即empty($x)等价于!$x.
$arr并非空数组,所以被转换为true, 取反后为false, 所以打印了第二个failed.

Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template