ive always done this if($foo!==$bar) but i realize that if($foo!=$bar) is correct? but double = still works and has always worked for me, but whenever i search php operators i find no info on double = so i assume i've always have done this wrong but it works anyways. So i should change all my !== to != just for the sake of it?
|
|
||||
|
|
|
You should compare data types for functions that return values that could possibly be of ambiguous truthy/falsy value. A well-known example is
|
|||||
|
|
You can find the info here: http://www.php.net/manual/en/language.operators.comparison.php It's scarce because it wasn't added until PHP4. What you have is fine though, if you know there may be a type difference then it's a much better comparison, since it's testing value and type in the comparison, not just value. |
|||
|
|
|
!== should match the value and data type != just match the value ignoring the data type
|
|||
|
|
|
Please Refer to |
|||
|
|
