I need to put a condition when I create one element of my array
foreach ($score as $item):
if ($item['subject_id'] == "3"){
$file_data_array[] = array(
"y" => $item['result'],
////Need condition here///////////////////////////////
"color" => '#FFF'
);
}
endforeach;
So I need a condition like
if ($item['confirmed'] == 1) {
"color" => '#FFF'
} else {
"color" => '#000'
}
So, since we cannot put an if inside an array, how can I do my condition?