Home >php教程 >php手册 >解析PHP中empty is_null和isset的测试

解析PHP中empty is_null和isset的测试

WBOY
WBOYOriginal
2016-06-06 20:29:101419browse

本篇文章是对PHP中empty is_null和isse的测试进行了详细的分析介绍,需要的朋友参考下

代码如下:

复制代码 代码如下:


$a;
$b = false;
$c = '';
$d = 0;
$e = null;
$f = array();


首先是empty的var_dump输出:
boolean true
boolean true
boolean true
boolean true
boolean true
boolean true

然后是is_null的输出:
boolean true
boolean false
boolean false
boolean false
boolean true
boolean false

最后是isset的输出:
boolean false
boolean true
boolean true
boolean true
boolean false
boolean true
由此可见 empty() 可以用来判定所有的数据类型是否为空或假,而 is_null 与 isset 基本一样,只能用来判断是否为NULL和未定义.

,网站空间,香港服务器,香港服务器租用
Statement:
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