php if not null shorthand code example
Example 1: php ternary operators
// Both ternary and if/else returns the same result
// ternary
$result = $condition ? 'foo' : 'bar';
// if/else
if ($condition) {
$result = 'foo'
} else {
$result = 'bar'
}
Example 2: php ternary shorthand
$y = $x ? "true" : "false";