fork download
  1. <?php
  2. for($i=0; $i<10; $i++)
  3. {
  4. $str .= "a";
  5. }
  6.  
  7. echo $str;
  8. ?>
Success #stdin #stdout #stderr 0.01s 20568KB
stdin
Standard input is empty
stdout
aaaaaaaaaa
stderr
PHP Notice:  Undefined variable: str in /home/z5Ctbq/prog.php on line 4