php if shorthand code example
Example 1: php shorthand if
$is_admin = ($user['permissions'] == 'admin') ? true : false;
Example 2: php ternary shorthand
$y = $x ? "true" : "false";
Example 3: php if short form
<?php echo ($qte > 0) ? $qte : 0; ?>