|
|
|
|
|
by PunchTornado
2839 days ago
|
|
no, but it all comes to the complexity of the operation. Like the article said, something like this is better than an if else loop: $variable == $x ? $y : $z; But if you write stuff like this: $variable == $x ? ($x == $y ? array_merge($x, $y, $z) : $x) : $y; I am going to be annoyed. In the second case, please use if else. |
|