fork(52) download
  1. <?php
  2. $i = 1;
  3. while ($i <= 10) {
  4. echo $i;
  5. $i++;
  6. }
  7. ?>
Success #stdin #stdout 0.01s 82880KB
stdin
Standard input is empty
stdout
12345678910