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.

Possible Duplicate:
What is the PHP ? : operator called and what does it do?

I saw this today in some PHP code.

$items = $items ?: $this->_handle->result('next', $this->_result, $this);

What is the ?: doing? Is it a Ternary operator without a return true value? A PHP 5.3 thing?

I tried some test code but got syntax errors.

share|improve this question
11  
I wish Google would allow special characters in their search. – Ben Shelock Jan 3 '10 at 0:23
Don't forget to mark the "right answer". – Emil Vikström Jan 3 '10 at 8:09
Thanks, 've never seen such stuff. – MInner Feb 9 '10 at 14:18

marked as duplicate by casperOne Dec 2 '11 at 14:53

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 42 down vote accepted

It does an implicit nullcheck on the lefthand and only assigns it when it is not null, else it will assign the righthand.

In pseudocode,

foo = bar ?: baz;

roughly resolves to

foo = (bar != null) ? bar : baz;

or

if (bar != null) {
    foo = bar;
} else {
    foo = baz;
}

You can also use this to do a "self-check" of foo as demonstrated in the code example you posted:

foo = foo ?: bar;

This will assign bar to foo when foo is null, else it will keep the foo "intact".

It's by the way called the Elvis operator.

Elvis operator

share|improve this answer
+1 For the code explanation :) – AntonioCS Jan 3 '10 at 0:55
Excellent thanks ;] – alpha_juno Jan 4 '10 at 11:12
8  
+1 for the king reference LOL – Elzo Valugi May 7 '10 at 14:12

See the docs

Since PHP 5.3, it is possible to leave out the middle part of the ternary operator. Expression expr1 ?: expr3 returns expr1 if expr1 evaluates to TRUE, and expr3 otherwise.

share|improve this answer
Thanks for that ;] – alpha_juno Jan 3 '10 at 0:19
They need a new doc writer because inevitably somebody will ask what happened to expr2. I just thunk it. – John K Jan 3 '10 at 0:33

Yes, this is new in PHP 5.3. It returns either the result of the boolean test value if it is evaluated as TRUE, or the alternative value if it is evaluated as FALSE.

share|improve this answer

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