fork download
  1. <?php
  2.  
  3. foreach(range(1, 10) as $numbers)
  4. {
  5. var_dump($numbers);
  6. }
Success #stdin #stdout 0.01s 52488KB
stdin
Standard input is empty
stdout
int(1)
int(2)
int(3)
int(4)
int(5)
int(6)
int(7)
int(8)
int(9)
int(10)