garbage.php 104 B

123456789
  1. <?php
  2. header( "HTTP/1.1 200 OK" );
  3. $data=str_repeat("0",1048576);
  4. while(1){
  5. echo $data;
  6. flush();
  7. }
  8. ?>