12

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

Daryl Gill
  • 5,398
  • 8
  • 32
  • 69
barfoon
  • 26,527
  • 25
  • 91
  • 138
  • 6
    Very commonly duplicated question, depending on how you search for the answer: http://stackoverflow.com/questions/80646/how-do-the-equality-and-identity-comparison-operators-differ – spoulson Jul 16 '09 at 17:49

7 Answers7

32

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
Ben Blank
  • 52,653
  • 27
  • 127
  • 151
Salty
  • 6,590
  • 3
  • 31
  • 30
  • 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 '09 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 '09 at 18:31
  • My mistake. Thanks for the edit, Ben Blank. Hopefully the original poster didn't get confused. – Salty Jul 16 '09 at 18:40
  • `==` also treats type a little differently from `===` - for instance, numeric strings ("5", "05") are compared as numbers, and associative arrays in different orders can still be equal. I would describe `===` as "exactly the same", rather than "equal value and type". – Brilliand Mar 26 '14 at 16:06
8

!= 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.

Welbog
  • 57,620
  • 8
  • 112
  • 120
4

!= 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
Kevin Lacquement
  • 4,991
  • 3
  • 24
  • 30
3

!== 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)
Ian Elliott
  • 7,368
  • 5
  • 33
  • 42
2

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

Others' responses here are also correct.

Matthew Vines
  • 26,673
  • 7
  • 73
  • 94
2

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

Arnkrishn
  • 28,792
  • 39
  • 109
  • 127
1

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

Gumbo
  • 620,600
  • 104
  • 758
  • 828