fork(2) download
  1. <?php
  2.  
  3. function test($i) {
  4. echo $i;
  5. if ($i < 5) { test($i + 1); }
  6. echo $i;
  7. }
  8.  
  9. test(0);
Success #stdin #stdout 0.01s 20520KB
stdin
Standard input is empty
stdout
012345543210