Possible Duplicate:
php == vs === operator
Reference - What does this symbol mean in PHP?
In PHP, what is the difference between ==
and ===
? Also, what's the difference between !=
and !==
? Appreciate the help!
Possible Duplicate:
php == vs === operator
Reference - What does this symbol mean in PHP?
In PHP, what is the difference between ==
and ===
? Also, what's the difference between !=
and !==
? Appreciate the help!
From http://us.php.net/manual/en/language.operators.comparison.php
$a == $b Equal TRUE if $a is equal to $b after type juggling.
$a === $b Identical TRUE if $a is equal to $b, and they are of the same type.
$a != $b Not equal TRUE if $a is not equal to $b after type juggling.
$a <> $b Not equal TRUE if $a is not equal to $b after type juggling.
$a !== $b Not identical TRUE if $a is not equal to $b, or they are not of the same type.