Possible Duplicates:
php == vs === operator
How do the equality (==) and identity (===) comparison operators differ?
What does === mean in php?
I know that = is for assignment and == for comparing
But what is ===?
Been googling but I cant find it :/
|
|
What does === mean in php? I know that = is for assignment and == for comparing But what is ===? Been googling but I cant find it :/ |
||||||||||||
|
closed as exact duplicate by Ionut G. Stan, musicfreak, Paul Dixon, andri, Michael Petrotta Sep 1 at 20:08 |
|
|
It ensures that both the type and the value is the same. For example
The manual entry for strpos() actually points this out explicitly. The same is true for array_search() and numerous other functions. |
||
|
|
|
|
Always start with the language's docs:
Google is not good for searching what looks like punctuation or mathematical operators. |
|||
|
|
|
|
It's strict equality. It's used for comparing not only the value but also the type: Check this out: |
||
|
|
|
|
It compares both the value and the types rather than just the values.
|
||
|
|