代码如下:
<?php $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和未定义.