What\'s a nicer way to do the following, that doesn\'t call f() twice?
$x = f() ? f() : \'default\';
This seems to work fine:
$x = f() or $x = 'default';