I use ternary operators alot but I can't seem to stack multiple ternary operator inside each other.
I am aware that stacking multiple ternary operator would make the code less readable but in some case I would like to do it.
This is what I've tried so far :
$foo = 1;
$bar = ( $foo == 1 ) ? "1" : ( $foo == 2 ) ? "2" : "other";
echo $bar; // display 2 instead of 1
What is the correct syntax ?
Just stack up the parenthesis, and you've got it:
As an aside, if you've got many clauses, you should consider using a
switch
:If the switch gets long, you can wrap it in a function.
Just use extra ( ) and it will work
Put parenthesis around each inner ternary operator, this way operator priority is assured:
You could write this correctly thus:
(i.e.: Simply embed the 'inner' ternary operator in parenthesis.)
However, I'd be really tempted not to do this, as it's about as readable as a particularly illegible thing that's been badly smudged - there's never any excuse for obfuscating code, and this borders on it.
Add the parenthesis:
The problem is that PHP, unlike all other languages, makes the conditional operator left associative. This breaks your code – which would be fine in other languages.
You need to use parentheses:
(Notice that I’ve removed the other parentheses from your code; but these were correct, just redundant.)