Ordenar em declarações condicionais [duplicado]

Duplicata Possível:
php false place in condition

Tenho notado que muito código PHP usa instruções condicionais como CONST == VARIABLE. Eu cresci com a sintaxe sempre articulada em sentido inverso. Existe uma razão para essa estrutura?

Exemplo:

 // 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 }

questionAnswers(2)

yourAnswerToTheQuestion