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');
|
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?
|
||||||||
|
|
|
That's a ternary operator; basically a short-hand conditional. It's the same as:
See this section in the PHP manual (the "Ternary Operator" section). |
||
|
|
|
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' |
||
|
|
|
|
?: 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 :. |
||||
|
|
|
That's the ternary operator. Here's a reference to a tutorial It works somehow like this:
|
||
|
|