// Both ternary and if/else returns the same result // ternary $result = $condition ? 'foo' : 'bar'; // if/else if ($condition) { $result = 'foo' } else { $result = 'bar' }