Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

<?

php
3
$count = file("counter.txt");
4
$fp = fopen("counter.txt", "w");
5
6
$arr = explode(";", file_get_contents('list.txt')); //uses ";" as a d
elimiter --> no spaces or commas
7
8
$hits = 100; //Number of rounds, 0 for infinite
9
10
for ($i = 0; ; $i++) {
11
12
13
if (($hits != 0) && ($i > ($hits - 1))) {
14
break;
15
}
16
17
foreach($arr as $url){
18
$s = file_get_contents($url)."nnn";
19
unset($s);
20
21
$count[0] ++;
22
}
23
}
24
fputs($fp , "$count[0]");
25
fclose($fp);
26
?>

You might also like