fork download
  1. <?php
  2. $colors = Array('Red', 'Green', 'Blue', 'Yellow');
  3.  
  4. foreach ($colors as $color)
  5. echo "$color\n";
  6. ?>
Success #stdin #stdout 0.02s 52432KB
stdin
Standard input is empty
stdout
Red
Green
Blue
Yellow