Using Ternary PHP Conditionals (short hand)
February 26th, 2009
Standard php conditional:
if (date("G") < 12) {echo 'Good morning';} else {echo 'Good afternoon';}
Shorthand…
$greeting = (date("G") < 12) ? 'Good morning' : 'Good afternoon';echo $greeting;
(http://www.addedbytes.com/php/ternary-conditionals/)