fork download
  1. <?
  2. $abc = array('a');
  3. foreach ($abc as $k => &$a) {
  4. echo $a;
  5. $abc[] = 'c';
  6. if ($k > 5) die;
  7. }
Success #stdin #stdout 0.02s 13064KB
stdin
Standard input is empty
stdout
a