标签: php
可能重复: What's the difference between is_null($var) and ($var === null)?
以下代码之间是否有任何区别:
if(is_null($x)) { ...
和
if($x===null) { ...
答案 0 :(得分:2)
是。 ==是一个松散的比较,这意味着在第二个版本中,NULL不仅会导致true。请参阅type comparison tables。
==
NULL
true