Is $a == $b always equivalent to $b == $a?
I think in JavaScript there's a few weird cases where that's not true, due to casting.
|
Is I think in JavaScript there's a few weird cases where that's not true, due to casting.
| ||||
|
show 1 more comment
feedback
|
|
Depends what happens between those two calls. Otherwise yes, those are the same. The order makes no difference. Using 2 equals http://php.net/manual/en/language.operators.comparison.php
Outputs: 1 EDIT To clarify, there is absolutely nothing you can ever put in $a or $b to get a different output on the comparison, just by putting it on the other side of the operator.
The output of that, for any $a or $b values, will always without a doubt be true true, or false false. | |||||||||
feedback
|
|
In short, yes. EDIT If you need to compare floating-point values, you really need to use the smallest acceptable difference in your specific case. Something like this would work for comparing floats (setting our smallest acceptable difference at
| |||||||||
feedback
|
|
The only type that I could see being different is something like:
To see why, look at it
If If But for any single type comparison (Where So in the general sense, | ||||
|
feedback
|
|
http://php.net/manual/en/language.operators.comparison.php There are diffrent operators you can use if you want to consider type casting in the comparison. The order of the logic in the conditional should not make a difference. | |||||
feedback
|
|
I have tried a number of variations and cannot find a case where
So, I give up at this point. Ideas welcome! | |||
|
feedback
|
(A + B) + C = A + (B + C)– treeface Jan 20 '11 at 21:14a == bandb == cbuta != c. – ide Jan 20 '11 at 21:17($a == $b) !== ($b == $a), but I am determined to do so now! – Josh Jan 20 '11 at 21:48