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 feed like a goof but I don't entirely understand what's happening in this code:

$var .= ($one || $two) ? function_one( $one, $another) : function_two( $two, $another);

Does that say if $one or $two then $var is equal to fuction_one(), else function_two()? What's the purpose of using this syntax -- speed?

share|improve this question
3  
Good ol' ternary: stackoverflow.com/questions/1080247/… – Pekka 웃 Jun 10 '10 at 20:40
1  
This is closed, but regarding what it's used for - speed and cleaner code as this example shows: en.wikipedia.org/wiki/Conditional_operator#Usage – Jan Kuboschek Jun 10 '10 at 20:50
Thanks everyone for the overwhelming response! – editor Jun 10 '10 at 20:56
For what it's worth, it's hard to figure out if your question is a duplicate if your question is "what is this?" – editor Apr 17 '12 at 21:49

marked as duplicate by Pekka 웃, Andy E, Sasha Chedygov, Felix Kling, Sarfraz Jun 10 '10 at 20:44

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.

4 Answers

up vote 4 down vote accepted

If either $one is true, or $two is true, then the result of calling function_one is appended to $var. Otherwise, the result of calling function_two is appended to $var.

It's basically shorthand for:

if ($one || $two) {
  $var .= function_one( $one, $another);
} else {
  $var .= function_two( $two, $another);
}
share|improve this answer

$var would append to itself the value from the return of function_one() if $one or $two evaluates to true, and would append the result of function_two() otherwise.

share|improve this answer

function_one() and function_two() both return a value.

You are concatenating $var to the return value of one of these function based on an if statement that evaluates $one or $two, If $one or $tow are assigned or return true the returned from function_one() is concatenated otherwise the value returned from function_tow() is.

share|improve this answer

$var .= ($one || $two) ? function_one( $one, $another) : function_two( $two, $another);

append $var with output of function_one() or function_two()

if $one is true then execute function_one() else execute function_two()

share|improve this answer

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