how do php inline if statements work 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: shorthand if php
$is_admin = ($user['permissions'] == 'admin') ? true : false;