How can I conditionally add 'b' => 'xyz' in the array below, in the array() statement?
$arr = array('a' => abc)
The ternary operator doesn't let me do it
|
How can I conditionally add
The ternary operator doesn't let me do it |
|||
|
|||||||
|
|
You need two steps:
|
|||
|
|
If you really want to use the ternary operator:
|
||||
|
|
|
Not sure what you're asking; why not
|
|||||||
|
|
Ternary means three terms. You must have a condition, a true part, and a false part. It takes the place of if condition then true part else false part. You can't leave out the third part. There is a shortcut in 5.3 that allows you to leave out the true part if the condition can be used also as the true part but it still really has three terms. |
|||
|
|
$arr = array('a' => abc, $condition ? ('b' => 'xyz') :, );or something... – user815340 Jun 25 '11 at 13:10