fork download
  1. <?php
  2. $fruits = array("mango", "apple", "papaya", "lichi");
  3.  
  4. foreach ($fruits as $value)
  5. {
  6. echo "$value \n";
  7. }
  8. ?>
Success #stdin #stdout 0.02s 52432KB
stdin
Standard input is empty
stdout
mango 
apple 
papaya 
lichi