fork download
  1. <?php
  2.  
  3. // your code goes here
  4.  
  5. $flavors = array();
  6. $flavors[]=array("name" => "CD" , "in_stock" => true);
  7. $flavors[]=array("name" => "V" , "in_stock" => true);
  8. $flavors[]=array("name" => "S" , "in_stock" => false);
  9.  
  10. foreach($flavors as $flavor) {
  11. if($flavor["in_stock"] == true) {
  12. echo $flavor["name"] . "\n";
  13. }
  14. }
  15.  
Success #stdin #stdout 0s 82560KB
stdin
Standard input is empty
stdout
CD
V