if (complicated == condition) {
do something with the same complicated == condition
}
####
$value = complicated == condition;
if ($value) {
do something with the same $value
}
####
if ($value = complicated == condition) {
do something with the same $value
}