重複の可能性:
php false place in condition
多くの PHP コードが CONST == VARIABLE のような条件ステートメントを使用していることに気付きました。私は常に逆に表現された構文で育ちました。この構造には何か理由があるのでしょうか?
例:
// this is the way I see it most typically represented in PHP
if ( false == $foobar ) { // do this }
// this is the way I normally do it
if ( $foobar == false ) { // do this }