I have been programming in PHP for a while but I still dont understand the difference between == and ===. I know that = is assignment. And == is equals to. So what is the purpose of ===?
|
It compares both value and type equality.
It has an analog: !== which compares type and value inequality
It's especially useful for functions like strpos - which can return 0 validly.
Here's a good wikipedia table listing other languages that have an analogy to triple-equals. |
|||||||||||||
|
|
It is true that === compares both value and type, but there is one case which hasn't been mentioned yet and that is when you compare objects with == and ===. Given the following code:
In case of objects === compares reference, not type and value (as $a and $b are of both equal type and value). |
|||
|
|
|
The PHP manual has a couple of very nice tables ("Loose comparisons with ==" and "Strict comparisons with ===") that show what result == and === will give when comparing various variable types. |
|||
|
|
|
It will check if the datatype is the same as well as the value
|
||||
|
|
|
== doesn't compare types, === does.
evaluates to true but
does not |
|||
|
|
|
It's a true equality comparison.
|
|||
|
|
|
Minimally, === is faster than == because theres no automagic casting/coersion going on, but its so minimal its hardly worth mentioning. (of course, I just mentioned it...) |
|||
|
|