fork(1) download
  1. <?php
  2. $value['description'] = 1;
  3. $array = ['a', 'b', 'c'];
  4.  
  5. if($value['description'] == 1) {
  6.  
  7. foreach($array as $item) {
  8. echo $item;
  9. }
  10. }
Success #stdin #stdout 0.02s 23640KB
stdin
Standard input is empty
stdout
abc