shorthand php code example
Example 1: php shorthand if
$is_admin = ($user['permissions'] == 'admin') ? true : false;
Example 2: php ternary
$result = $condition ? 'foo' : 'bar';
$is_admin = ($user['permissions'] == 'admin') ? true : false;
$result = $condition ? 'foo' : 'bar';