php if then shorthand code example
Example 1: php inline if
/* most basic usage */
$var = 5;
$var_is_greater_than_two = ($var > 2 ? true : false); // returns true
Example 2: php shorthand if
$is_admin = ($user['permissions'] == 'admin') ? true : false;
Example 3: php if short form
<?php echo ($qte > 0) ? $qte : 0; ?>