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?
What is the difference between the operators |
||||
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.
|
There's no difference between these two operators. To check for
The above condition actually evaluates to true. With the identity operator, however, you can check if a variable is really 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 |
||||
|
|
See the PHP docs: It says:
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. |
||||
|
|
|
First Google result: |
|||||
|
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:
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:
There is no <> such operator these are <= or >= that are used in integer variables. To check null value you should use:
both will work similar. |
|||
|
|
NULLyou can useis_null(). – Quasdunk Dec 23 '11 at 10:54