可能重复:
条件中的 php 错误位置
我注意到很多 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 }