PHP 永远运行PHP脚本

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 永远运行PHP脚本相关的知识,希望对你有一定的参考价值。

<?php
ignore_user_abort(); // run script in background
set_time_limit(0); // run script forever
$interval=60*15; // do every 15 minutes...
do{
   // add the script that has to be ran every 15 minutes here
   // ...
   sleep($interval); // wait 15 minutes
}while(true);
?>

以上是关于PHP 永远运行PHP脚本的主要内容,如果未能解决你的问题,请参考以下文章

从 PHP 控制器使用 request.post() 调用 python 脚本永远不会返回。为啥?

在给定时间后自动终止Linux进程/ php脚本

防止 PHP require_once 永远运行

动态更改PHP变量(在执行时)

如何使用 AJAX 执行 PHP 电子邮件脚本? [当前代码不起作用]

什么是最大值php artisan命令的执行时间