fork download
  1. <?php
  2. $result[0] = 34;
  3. $result[1] = 22;
  4. $result[2] = 76;
  5.  
  6. for ($i = 0; $i < 3; $i++){
  7. print $result[$i].'<br />';
  8. }
  9. ?>
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
34<br />22<br />76<br />