美文网首页
php断开链接还执行

php断开链接还执行

作者: LauEl | 来源:发表于2018-02-28 08:00 被阅读8次

<?php
ignore_user_abort(true);
set_time_limit(0);
while(1) {
  $fp = fopen('time_task.txt',"a+");
  $str = date("Y-m-d h:i:s")."\n\r";
  fwrite($fp,$str);
  fclose($fp);
  sleep(5); //半小时执行一次
}
?>

相关文章

网友评论

      本文标题:php断开链接还执行

      本文链接:https://www.haomeiwen.com/subject/bfovxftx.html