vote up 1 vote down star

Is there a difference between !== and != in PHP?

flag

5  
Very commonly duplicated question, depending on how you search for the answer: stackoverflow.com/questions/80646/… – spoulson Jul 16 at 17:49

7 Answers

vote up 15 vote down check

The != operator compares value, while the !== operator compares type as well.

That means this:

var_dump(5!="5"); // bool(false)
var_dump(5!=="5"); // bool(true), because "5" and 5 are of different types
link|flag
null!="null" is not false, wrong example. Also echo prints 1 for bool(true) and nothing for bool(false). The actual output of the code snippet is 11. – VolkerK Jul 16 at 18:01
@VolkerK — I don't have a PHP interpreter in front of me, but hopefully this is a more accurate example. :-) – Ben Blank Jul 16 at 18:31
My mistake. Thanks for the edit, Ben Blank. Hopefully the original poster didn't get confused. – Salty Jul 16 at 18:40
vote up 0 vote down

Hi

Operator != returns true, if its two operands have different values.

Operator !== returns true, if its two operands have different values or they are of different types.

cheers

link|flag
vote up 1 vote down

See the PHP type comparison tables on what values are equal (==) and what identical (===).

link|flag
vote up 0 vote down

!= is for "not equal", while !== is for "not identical". For example:

'1' != 1   # evaluates to false, because '1' equals 1
'1' !== 1  # evaluates to true, because '1' is of a different type than 1
link|flag
vote up 1 vote down

=== is called the Identity Operator. And is discussed in length in other question's responses.

Others' responses here are also correct.

link|flag
vote up 4 vote down

!= is the inverse of the == operator, which checks equality across types

!== is the inverse of the === operator, which checks equality only for things of the same type.

link|flag
see also ca2.php.net/manual/nl/… – txwikinger Jul 16 at 17:46
vote up 2 vote down

!== checks type as well as value, != only checks value

$num =  5

if ($num == "5") // true, since both contain 5
if ($num === "5") // false, since "5" is not the same type as 5, (string vs int)
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.