Скрипт:
<?php
set_time_limit(0);
$url = 'http://forum.site.net/top.php?page=';
$i = 4458;
if(!file_exists("/home/host1255943/krira.net/htdocs/www/ru/text.txt"))
file_put_contents("/home/host1255943/krira.net/htdocs/www/ru/text.txt", '');
while(1){
$content = file_get_contents($url . $i);
if(preg_match_all('#<td class="userstop__username">.*>(.*)</a></td>#isU', $content, $match)){
file_put_contents(
"/home/host1255946/krira.net/htdocs/www/ru/text.txt",
implode("\n",
array_unique(
array_merge(
file("/home/host1255943/krira.net/htdocs/www/ru/text.txt", FILE_IGNORE_NEW_LINES),
$match[1]
)
)
)
);
sleep(10);
$i += 1;
}
else
break;
}
?>