PHP if shorthand and echo in one line - possible?

echo, if-statement, php, shorthand

Solution

<?=(expression) ? $foo : $bar?>

edit: here's a good read for you on the topic

edit: more to read

Problem

What's the best, preferred way of writing if shorthand one-liner such as: ``` expression ? $foo : $bar ``` Plot twist: I need to `echo $foo` or `echo $bar`. Any crazy tricks? :)

Original source

Related problems