docs
[mirrors/Programs.git] / php / fopen-bug.php
CommitLineData
79a323cb
H
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
7point...*/
8
9$i=1;
10ini_set('default_socket_timeout',1);
11set_time_limit(0);
12$url='http://ad.doubleclick.net/click';
13$url='http://w.moreover.com/';
14//$url = 'http://pernicek.mooo.com';
15while(1) {
16 @file_get_contents($url, false, null, 0, 10000);
17 echo "#".$i++;
18}
19
20?>
21
This page took 0.202005 seconds and 4 git commands to generate.