$public = ""; // Домен группы
$publicid = ""; // ID группы
$howmuch = 15; // Количество постов
$log = file_get_contents("log2.txt"); // Файл с ID комментариев
// Забираем посты по API ВК
$getWall = file_get_contents('https://api.vk.com/method/wall.get?v=5.27&domain='.$public.'&count='.$howmuch);
$getWall = json_decode($getWall);
$getWall = $getWall->response->items;
for ($i = 0; $i < $howmuch; $i++) {
// Спим 0.3 секунды
usleep(333333);
// Забираем комменты к N посту по API ВК
$getComm = file_get_contents('https://api.vk.com/method/wall.getComments?v=5.27&owner_id='.$publicid.'&post_id='.$getWall[$i]->id.'&count=100');
$getComm = json_decode($getComm);
$getComm = $getComm->response->items;
for ($b = 0; $b < count($getComm); $b++) {
// Если ID коммента уже есть в файле log2.txt, то ничего не делаем
if (preg_match('/'.$getComm[$b]->id.'/', $log)) {
}
// Если такого ID в логе нет, то выводим коммент на странице
else {
echo '<span style="font-family:Arial;font-size:14px;">'.$getComm[$b]->text.'<br><a href="http://vk.com/wall'.$publicid.'_'.$getWall[$i]->id.'?reply='.$getComm[$b]->id.'">link</a></span><p> </p>';
// И попутно записываем его ID в лог
$file=fopen("log2.txt", "a");
fwrite ($file, $getComm[$b]->id."\n");
fclose($file);
}
}
}
usleep(333333)
--- 333333мс - это разве 0.3секунды? О_О )= 4.5 if (preg_match('/'.$getComm[$b]->id.'/', $log)) {
}
if (strpos($log, $getComm[$b]->id) === FALSE) continue;
$file=fopen("log2.txt", "a");
fwrite ($file, $getComm[$b]->id."\n");
fclose($file);
file_put_contents();