Can you explain the difference between == and ===, giving some useful examples?
|
2
|
|
|||
|
|
|
|
== 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'
|
||
|
|
|
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. |
||
|
|
|
|
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". |
||
|
|
|
Given 1) Operator : == is "equal to". |
|||
|
|
