$result = $input ? somesub($input) : $default; #### if ($input) { $result = somesub($input); } else { $result = $default; }