speedtest/garbage.php

9 lines
104 B
PHP
Raw Normal View History

2016-03-04 11:48:09 +00:00
<?php
header( "HTTP/1.1 200 OK" );
$data=str_repeat("0",1048576);
while(1){
echo $data;
flush();
}
?>