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?

Can someone please tell me what this 'return' php code means / does:

return ($status=='SUCCESS' && $blocked=='YES') ? $reason : false;

I'm familiar with the regular return $variable type of statements in php, but I don't get what the specific brackets ( ) and ? question marks and the ": false" does.

(this is the return statement at the end of a php function)

share|improve this question
Almost (its very similar but the link's question lacks the &&). I didn't find it when i was searching. – Marc Dubois Aug 8 '12 at 0:46
Yes, sorry, I was interrupted. This is missing this very important question here as reference: Reference - What does this symbol mean in PHP? - Whenever you run about some symbol you do not understand, that is a really good reference (next to the manual, it's sometimes hard to even search for these that's why that reference is worth to bookmark). – hakre Aug 8 '12 at 1:03

marked as duplicate by hakre, PeeHaa 埽, deceze, tereško, Donal Fellows Aug 8 '12 at 12:10

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

It's a ternary statement. It's basically a shorthand notation for if/else.

In your example it would read like: If $status is equal to "success" and $blocked is equal to "Yes" return $reason, else, return false;

share|improve this answer
thanks for the perfect explanation - Exactly what I needed to know. – Marc Dubois Aug 8 '12 at 0:42

That's a ternary, or conditional operator, it's the same as if you had:

if($status=='SUCCESS' && $blocked=='YES'){
return $reason;}
else{
return false;
}
share|improve this answer

It means the same as this:

if($status == 'SUCCESS' && $blocked == 'YES')
{
    return $reason;
}
else
{
    return false;
}
share|improve this answer

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