Can someone explain to me the difference between =, ==, and ===? I think using one equal sign is to declare a variable while two equal signs is for a comparison condition and lastly three equal signs is for comparing values of declared variables.
|
|
||||
|
|
You have
For more info on the need for |
||||
|
|
|
|||
|
|
|
Take a look at the manual: http://www.php.net/manual/en/language.operators.comparison.php |
|||
|
|
|
= assignment operator == checks if two variables have the same value === checks if two variables have the same value AND if their types are the same |
|||
|
|
|
Everyone else have clarified .. I just want to add an example to clarify it more ..
|
|||
|
|
|
Maybe you can better comprehend the difference between == and === with an example that involves automatic casting:
|
|||||||||
|
|
You are right that |
|||
|
|