fork download
<?php
error_reporting(-1);

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