Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

3 Answers

Try and use the ternary if:

foreach ($score as $item):
     if($item['subject_id'] == "3"){
         $file_data_array[] = array(
            "y" => $item['result'],
            "color" => ($item['confirmed'] == 1 ? '#FFF': '#000')
        );
endforeach;
share|improve this answer
thx ! its working ! :) – user1029834 Dec 7 '11 at 1:01
"color" => ($item['confirmed']==1 ? "#FFF" : "#000")
share|improve this answer
foreach ($score as $item):
 if($item['subject_id'] == "3"){
     if($item['confirmed'] == 1) {
         $color = '#FFF'; 
      } else {
         $color = '#000';
      }     
     $file_data_array[] = array(
        "y" => $item['result'],
        "color" => $color);
endforeach;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.