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