Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Can someone please explain what the ? and : operators are in PHP?

e.g.:

(($request_type == 'SSL') ? HTTPS_SERVER : HTTP_SERVER) 
share|improve this question
thank you all for your answers... – seb Jul 3 '09 at 17:34

8 Answers

up vote 39 down vote accepted

This is the conditional operator.

$x ? $y : $z

means "if $x is true, then use $y; otherwise use $z".

People will tell you that ?: is "the ternary operator". This is wrong. ?: is a ternary operator, which means that it has three operands. People wind up thinking its name is "the ternary operator" because it's often the only ternary operator a given language has.

share|improve this answer
4  
I don't disagree, but I sometimes feel that people take their conditional operator hate too far. I would say that ?: should be used whenever it makes the code cleaner and clearer -- and that we can assume, for purposes of "clearer", that the person reading the code does readily understand what ?: does. – chaos Jul 3 '09 at 17:43
2  
I love conditional operators... :( – micmoo Jul 3 '09 at 17:45
4  
I'm fond of the conditional operator for return statements (where a condition is necessary, obviously.) One return keyword, two conditions. :) – Yohnny Jul 3 '09 at 17:55
2  
Of course, in good languages, "if, then, else" is an expression. ;) – Deniz Dogan Jul 3 '09 at 18:15
4  
Personally i love condition expressions and find them very easy to read. Once you understand that they're an 'IF' shortcut, you wonder what was so hard about them. But each to his own i guess. :o) – Gary Willoughby Jul 18 '09 at 17:05
show 8 more comments

It's called a ternary operator. If the first expression evaluates to true, HTTPS_SERVER is used, else HTTP_SERVER is chosen.

It's basically a shorthand if statement, the above code could also be rewritten as follows:

if ($request_type == 'SSL') {
   HTTPS_SERVER;
} else {
   HTTP_SERVER;
}
share|improve this answer
2  
It's not the ternary operator, just a ternary operator. Ternary means that the function (operator) takes three arguments. – Deniz Dogan Jul 3 '09 at 17:31
1  
2  
Yes, Wikipedia is on my side in this case. :) – Deniz Dogan Jul 3 '09 at 17:34
See also stackoverflow.com/questions/798545/… – chaos Jul 3 '09 at 17:36
This is the most explanatory answer. – deathlock Oct 7 '12 at 21:36

This is sometimes known as the ternary conditional operator. Ternary means that it has three arguments, as x ? y : z. Basically, it checks if x is true; if it is, then put y instead of this operation, otherwise z.

$hello = $something ? "Yes, it's true" : "No, it's false";
share|improve this answer

Conditional operator ?: is an operator which is used to check a condition and select a value depending on the value of the condition. It is expressed in the following form:

             variable = condition ? expression1 : expression2;

It works as follows...

  1. Firstly, condition is evaluated.
  2. If the condition is true, then expression1 is evalauated. And the value of expression1 is assigned to the variable.
  3. If the condition is false, then expression2 is evaluated. And the value of expression2 is assigned to the variable.

For example:

                    x = (a>b) ? 5 : 9

In this, for x, firstly the condition (a>b) is evaluated. If this condition becomes true, then x will become the value 5 (ie, x=5). But if the condition (a>b) becomes false, then x will attain the value 9 (ie, x=9).

Ternary Operator

Sometimes conditional operator ?: is also called a ternary operator. This is so because it involves three operands. For example:

            x ? y : z

Here, x,y and z are the three operands. If condition x is true, then value y is assigned otherwise value z is assigned.

share|improve this answer

This is a short way of writting IF sentences. It is also used in other languages like Java, Javascript and others.

Your code:

$protocol = $request_type == 'SSL' ? HTTPS_SERVER : HTTP_SERVER;

can be written like this:

if($request_type == 'SSL')
    $protocol = HTTPS_SERVER;
else
    $protocol = HTTP_SERVER;
share|improve this answer

That's basically a fancy way if writing an if else statement.

Some say its easier to read, some say not.

ternary operator at wikipedia

share|improve this answer
2  
It's easier to read for short statements. Once you start adding complex expressions or nesting them, then you should switch to if/else. – DisgruntledGoat Jul 3 '09 at 20:01
I agree, but its very subjective, and pretty hard to read if you don't know how it works, see this question ;p – Daniel Magnusson Jul 4 '09 at 12:35

As John T says, it is called a ternary operator and is essentially a shorthand version of an if /else statement. Your example, as a full if / else statement, would read;

if($request_type == 'SSL')
{
    HTTPS_SERVER;
}
else
{
    HTTP_SERVER;
}
share|improve this answer
1  
Right, but the entire if-else block would have to evaluate to something in order for it to be equivalent to the operator. But since the OP discards the value... I guess this code is okay? – poundifdef Jul 3 '09 at 17:40
Not sure what you mean. The only equivalence that matters here is functional equivalence, no? – MatW Jul 4 '09 at 8:10

That is a one line if statement:

condition ? true : false

Translated to an ordinary if statement in your case, that would be:

if($request_type == 'SSL') HTTPS_SERVER;
else HTTP_SERVER;
share|improve this answer
1  
Not quite; the operator evaluates to a value, which your code doesn't do. – poundifdef Jul 3 '09 at 17:34
Precisely. I don't know PHP, but in many other languages, "if" is a statement, not an expression. ?: returns an expression, not a statement. – Deniz Dogan Jul 3 '09 at 17:36
Re-read his example: the OP discards the value of the operator, so your code is technically okay! – poundifdef Jul 3 '09 at 17:37
Ok, but I think I gave an answer that explained to him what the one line if sentence would do. – Yngve Sneen Lindal Jul 3 '09 at 17:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.