Can you explain the difference between == and ===, giving some useful examples?
How do the equality (== double equals) and identity (=== triple equals) comparison operators differ?
|
|
|||||||
|
|
== compares the values of variables for equality, type casting as necessary. === checks if the two variables are of the same type AND have the same value. A full explanation of the differences are available in the PHP manual. Here's a table I put together showing how some variables compare to each other.
|
|||||||||||||||||||
|
|
In regards to Javascript The === operator works the same as the == operator but requires that its operands have not only the same value, but also the same data type. For example the sample below will display 'x and y are equal' but not 'x and y are identical'
|
|||||
|
|
Given 1) Operator : == is "equal to". |
||||
|
|
|
You would use === to test whether a function or variable is false rather than just equating to false (zero or an empty string).
In this case strpos would return 0 which would equate to false in the test
or
which is not what you want here. |
|||
|
|
|
It's all about data types. Take a
the
and then compare with the
But With So if i did:
That condition would not be true, as Why would you need this? Simple - Let's take a look at one of PHP's functions: the So if you did:
So, do you see how this could be an issue now? Most people don't use
So for things like that, you would use the |
||||
|
|
|
Variables have a type and a value.
When you use these variables (in PHP), sometimes you don't have the good type. For example, if you do
PHP have to convert ("to cast") $var to integer. In this case, "$var == 1" is true because any non-empty string is casted to 1. When using ===, you check that the value AND THE TYPE are equal, so "$var === 1" is false. This is useful, for example, when you have a function that can return false (on error) and 0 (result) :
This code is wrong as if
because the test is that the return value "is a boolean and is false" and not "can be casted to false". |
|||
|
|