代码如下:
代码如下:
首先是empty的var_dump输出:
boolean trueboolean true
boolean true
boolean true
boolean true
boolean true
然后是is_null的输出:
boolean trueboolean false
boolean false
boolean false
boolean true
boolean false
最后是isset的输出:
boolean falseboolean true
boolean true
boolean true
boolean false
boolean true
由此可见 empty() 可以用来判定所有的数据类型是否为空或假,而 is_null 与 isset 基本一样,只能用来判断是否为NULL和未定义. 原文链接:https://www.f2er.com/php/25932.html