vote up 1 vote down star
1

I found this line of code and I'm trying to comprehend what it's doing. The part I'm not familiar with is the question mark and the colon. What are these characters used for?

$string = $array[1] . ($array[0] === 47 ? '' : ' word');
flag

73% accept rate
This is the conditional operator. It is also a type of ternary operator (simply because it has 3 operands) and often folks make the mistake of calling it the ternary operator which doesn't really make a whole lot of sense. – Andrew Hare Oct 29 at 6:18
Also this is a duplicate, please see stackoverflow.com/questions/889373/… and stackoverflow.com/questions/1276909/…. – Andrew Hare Oct 29 at 6:20
@Andrew -- silly or not, the PHP manual has named this construct The Ternary Operator, so it's not a mistake to refer to it as such php.net/manual/en/… – Alan Storm Oct 29 at 6:26
See stackoverflow.com/questions/80646/… for your next question. :) – Greg Hewgill Oct 29 at 6:28

4 Answers

vote up 5 vote down check

That's a ternary operator; basically a short-hand conditional.

It's the same as:

$string = $array[1];

if ($array[0] !== 47)
    $string .= ' word';

See this section in the PHP manual (the "Ternary Operator" section).

link|flag
+1 for explanation with similarity to normal code. – thephpdeveloper Oct 29 at 6:21
vote up 0 vote down

Its the ternary operator, it is given a boolean expression: $array[0] === 47 is evaulated to either a true or false result, proceeding the ? is the true result, in this case: '' and proceeding the colon is the false result: ' word'

link|flag
vote up -1 vote down

?: is a conditional expression. If the part before the ? evaluates to true, the value of the expression is what comes between the ? and the :. But if the part before the ? is false, the value of the expression is what comes after the :.

link|flag
the actual term: ternary operator. – thephpdeveloper Oct 29 at 6:20
@Mauris - Actually calling this operator "the ternary operator" is a mistake and the PHP documentation really ought to be updated to call this the "conditional operator" which is what it is. – Andrew Hare Oct 29 at 6:24
vote up 0 vote down

That's the ternary operator.

Here's a reference to a tutorial

It works somehow like this:

function tern()

    if ($array[0] === 47)
    {
        return '';
    }
    else
    {
        return 'word';
    }
}
link|flag

Your Answer

Get an OpenID
or

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