| PHP compare order? Does it matter in php? |
HeadBut

msg:3751585 | 9:55 pm on Sep 24, 2008 (gmt 0) | In PHP does it matter which way you compare? if("Registesr" == $SomeVariableOr['Thing']){DoSomething();} Or If($SomeVariableOr['Thing'] == "Register"){DoSomething();} Thanks
|
eelixduppy

msg:3751592 | 10:13 pm on Sep 24, 2008 (gmt 0) | Not for this case. It would obviously matter if you were using other comparison operators such as less than (<) or greater than (>), though.
|
|
|