<?
//Проверка блокировки
if(file_exists("lock.txt"))
die("copy");
function test228($msg) {
if (!$f = fopen('test.txt', 'a+')) return false;
@fputs($f, date('H:i:s > ').$msg."\r\n"));
@fclose($f);
return true;
}
header('Content-Length: 1');
header('Connection: close;');
echo ' ';
@flush();
@ob_flush();
//Блокируем
@file_put_contents("lock.txt", "");
for($i=0; $i<3; $i++) {
test228("test"); // если использовать эхо будет падать
sleep(10);
}
//Удаляем блокировку
@unlink("lock.txt");
?>