时间:2021-07-01 10:21:17 帮助过:22人阅读
当变量 $a=null时程序结果为
is_null($a) true
isset($a) false
empty($a) true
当变量 $a=‘’(空字符串)时程序结果为
is_null($a) false
isset($a) true
empty($a) true
当变量 $a=‘ ’(中间有个空格)时程序结果为
is_null($a) false
isset($a) true
empty($a) false
当变量 $a=[](空数组)时程序结果为
is_null($a) false
isset($a) true
empty($a) true
因此我们总结到:
1.is_null 只对null为true其他的全为false,php中 null是一个既没类型有没有值的变量
2.isset 只对null为false其他的全为t因为'',' ' ,[],这三种变量是有明确的数据类型的,‘’代表空的字符串,‘ ’代表空格字符串,[]代表空的数组。因此一个变量只要有类型isset就为 true。
3.empty只对非空的数组和字符串为false。
以上就是php中函数is_null,isset,empty的介绍的详细内容,更多请关注Gxl网其它相关文章!