Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
重複の可能性: is_null($var) と ($var === null) の違いは何ですか?
次のコードに違いはありますか:
if(is_null($x)) { ...
と
if($x===null) { ...
はい。は大まかな比較であり、2 番目のバージョンで得られる==よりもはるかに多くのことを意味します。タイプ比較表を参照してください。NULLtrue
==
NULL
true