docs
[mirrors/Programs.git] / php / fopen-bug.php
1 #!/usr/bin/php
2 <?php
3
4 //phpinfo(); die();
5
6 /*Run and wait for a while, this can totaly stop the script at the dead
7 point...*/
8
9 $i=1;
10 ini_set('default_socket_timeout',1);
11 set_time_limit(0);
12 $url='http://ad.doubleclick.net/click';
13 $url='http://w.moreover.com/';
14 //$url = 'http://pernicek.mooo.com';
15 while(1) {
16 @file_get_contents($url, false, null, 0, 10000);
17 echo "#".$i++;
18 }
19
20 ?>
21
This page took 0.273972 seconds and 4 git commands to generate.