Search code examples
phpif-statementechoshorthand

PHP if shorthand and echo in one line - possible?


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? :)


Solution

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

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

    edit: more to read