Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
What's the difference between “<>” and “!=”?

What is the difference between the operators != and <> in PHP? I need to check if a variable is not equal to NULL. Which operator should I use?

share|improve this question
3  
You can read the answer here: stackoverflow.com/questions/3956362/… - To check if something is NULL you can use is_null(). – Quasdunk Dec 23 '11 at 10:54

marked as duplicate by andyb, Wesley van Opdorp, Frosty Z, Positive, Rob W Dec 23 '11 at 11:22

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

4 Answers

There's no difference between these two operators.

To check for NULL you might want to use the identity operator === instead, though:

$a = 0;

if ($a == NULL) {
   // executes
}

The above condition actually evaluates to true. With the identity operator, however, you can check if a variable is really NULL (or also: TRUE or FALSE or anything else, you'll need to check for its actual value and not the result from prior type conversion). Hope that makes sense.

EDIT: To actually answer the question and referring to my rant, in order to check if a variable is not null, you can use the identity operator's counterpart !== (or is_null() as suggested in other answers and comments).

share|improve this answer
There is a slight order of precedence difference between <> and !=, though it's unlikely to affect anything but the most complex of conditions – Mark Baker Dec 23 '11 at 11:09

See the PHP docs:

It says:

$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.

There's also a table on that page which explains how null is treated. In addition, see this page for a discussion of type comparisons.

share|improve this answer

First Google result:

http://php.net/manual/en/function.is-null.php

share|improve this answer
2  
+1, everybody should always RTFM – M42 Dec 23 '11 at 10:57
==' (Equal):

 if("22" == 22) echo "YES";
 else           echo "NO";

The code above will print "YES". The reason is that the values of the operands are equal. Whereas when we run the example code below:

'===' (Identical):

 if("22" === 22) echo "YES";
 else            echo "NO";

The result we get is "NO". The reason is that although values of both operands are same their types are different, "22" (with quotes) is a string while 22 (w/o quotes) is an integer. But if we change the code above to the following:

if("22" === (string)22) echo "YES";
 else           echo "NO";

There is no <> such operator these are <= or >= that are used in integer variables.

To check null value you should use:

if($a == 'null') or if (isset($a)) 

both will work similar.

share|improve this answer

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