Is there a shorter syntax for the code below:
if (!isset($foo)) {
$foo = $bar;
}
$foo += $bar;
=== EDIT ===
This syntax is slightly shorter:
isset($foo) ? $foo += $bar : $foo = $bar;
But I'm still wondering if it could be written in an even shorter way.