Today only I have noticed and found out the importance of using === operator. You can see it in the following example:
$var=0;
if ($var==false) echo "true"; else echo "false"; //prints true
$var=false;
if ($var==false) echo "true"; else echo "false"; //prints true
$var=0;
if ($var===false) echo "true"; else echo "false"; //prints false
$var=false;
if ($var===false) echo "true"; else echo "false"; //prints true
The question is that, are there any situations where it is important to use === operator instead of using == operator?
echo $var == false;etc. – Skilldrick Jun 21 '10 at 12:321(fortrue) or the empty string (forfalse). The examples could be shortened, however, by using the ternary operator like so:print ($var == false) ? 'true' : 'false';. – Jakob Jun 21 '10 at 13:10