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