Without further ado, let’s go directly to the code:
Copy code The code is as follows:
ignore_user_abort(true); //Set the customer Whether to interrupt the execution of the script when the client disconnects
set_time_limit(0);
$file = '/tmp/ignore_user.txt';
if(!file_exists($file)) {
file_put_contents ($file);
}
if(!$handle = fopen($file,'a+b')){
echo "not open file:".$file;
exit;
}
$i=0;
while($i<100) {
$time = date("Y-m-d H:i:s",time());
echo $ time."n";
if(fwrite($handle,$time."n")===false) {
echo "not write file:".$file;
exit;
}
echo "write file time:".$time."n";
$i++;
sleep(2);
}
fclose($handle);
http://www.bkjia.com/PHPjc/325782.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/325782.htmlTechArticleDon’t say much, just go to the code: Copy the code and the code is as follows: ignore_user_abort(true); //Set the client Whether to interrupt the execution of the script when disconnecting set_time_limit(0); $file = '/tmp/ig...