Monday, April 30, 2012

is_null vs ===null [closed]


Possible Duplicate:

What's the difference between is_null($var) and ($var === null)?






Is there any difference between following code:



if(is_null($x)) { ...


and



if($x===null) { ...




No comments:

Post a Comment