- or download this
if (complicated == condition) {
do something with the same complicated == condition
}
- or download this
$value = complicated == condition;
if ($value) {
do something with the same $value
}
- or download this
if ($value = complicated == condition) {
do something with the same $value
}