Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
What does “===” mean?

i am seeing === often in php statements, but don't know what it mean. e.g if ($pwd === PwdHash($pass,substr($pwd,0,9))). thanks

share|improve this question
@rdlowrey: that is an auto-generated comment that appears when a vote to close is claiming the question as a duplicate. – sberry Jan 18 '12 at 6:26

marked as duplicate by mario, Positive, Harry Joy, jondavidjohn, sberry Jan 18 '12 at 6:25

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.

2 Answers

It tests equality, but unlike == it requires that the two operands be of the same type as well as value.

For instance, "1" == 1 will be true, but "1" === 1 is false because the type is different.

share|improve this answer
Thank you. your answer is really helpful. – user1155551 Jan 18 '12 at 6:21
1  
The important point is not that === requires same type, but == actually attempts to perform type casting to make them ===. – jondavidjohn Jan 18 '12 at 6:22
PHP's documentation on "Type Juggling" gets into more detail about its type system and casting (php.net/manual/en/language.types.type-juggling.php) – nness Jan 18 '12 at 6:32

php has two types of equal comparison operator == and ===

== check for the equalization but not strict mean it will return true for ('123'==123)

=== is a strict equal operator it will return false for the ('123'===123)

read more about these from here

share|improve this answer
2  
'abc'=='ABC' will be false too – Timur Jan 18 '12 at 6:25
'abc' == 'ABC' is false because the strings are different. – Arjan Jan 18 '12 at 6:26
'abc'=='ABC' returns false. – xdazz Jan 18 '12 at 6:26
thanks guys to remember my fault, I apologies for my mistake and correct that. – Dau Jan 18 '12 at 6:32

Not the answer you're looking for? Browse other questions tagged or ask your own question.