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
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 |
|||
|
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.
|
It tests equality, but unlike For instance, |
|||||||||
|
|
php has two types of equal comparison operator
read more about these from here |
|||||||||||
|