fork download
  1. <?php
  2.  
  3. header('Content-type: text/plain; charset=utf-8');
  4. for ($i=1;$i<10;$i++){
  5. echo $i*$i ."\n";
  6. }
Success #stdin #stdout 0.04s 23468KB
stdin
Standard input is empty
stdout
1
4
9
16
25
36
49
64
81