null 表示一个变量没有值,并且不区分大小写
在下列情况下一个变量被认为是 NULL
:
1、被赋值为 NULL
。
2、尚未被赋值。
3、被 unset()。
判断是否为null : is_null();
$name = 'chrdai'; var_dump(is_null($name)); // boolean false
null 表示一个变量没有值,并且不区分大小写
在下列情况下一个变量被认为是 NULL
:
1、被赋值为 NULL
。
2、尚未被赋值。
3、被 unset()。
判断是否为null : is_null();
$name = 'chrdai'; var_dump(is_null($name)); // boolean false