Shorthand If – The Ternary Operator

You are probably already familiar with shorthand if, also known as the ternary operator. $value = get_value(); $default_value = 10; $selected_value = ($value ? $value : $default_value); If you haven’t seen shorthand if (line 3) before, it is a more elegant Read More …