我有一个运行数据库备份并在没有任何特定 html 输出的情况下压缩它的 php 脚本。此脚本包括时间检查,以避免在 db 中存储的指定延迟之前执行。现在的问题是我不能使用服务器 cronjob 任务,因为网络服务器不支持它。
所以我会创建一个 javascript 函数,它应该在每次访问时调用 php 脚本(是的,这对我的目的来说已经足够了),但不会延迟访问页面的用户,因为它需要大约 1 分钟才能结束该过程。是否可以在不等待响应的情况下运行脚本?当用户会话终止时,一个 php 脚本也可以继续运行吗?
我认为类似于: http ://drupal.org/project/poormanscron
提前致谢
编辑: 解决方案1(仅限php):将其放在我的输出之前:
public static function cronjob() {
ignore_user_abort(true); // optional
session_write_close();//close session file on server side to avoid blocking other requests
header("Content-Encoding: none");//send header to avoid the browser side to take content as gzip format
header("Content-Length: ".ob_get_length());//send length header
header("Connection: close");//or redirect to some url: header('Location: http://www.google.com');
ob_end_flush();flush();//really send content, can't change the order:1.ob buffer to normal buffer, 2.normal buffer to output
//fastcgi_finish_request(); // important when using php-fpm!
// Do processing here
sleep(5);
require_once("./cron_job.php");
exit();
}
ob_start(); // will be closed in backup function
register_shutdown_function('cronjob');
解决方案 2(使用 javascript):
1)在里面创建一个包含你的 cronjobs 的文件
2)将此javascript代码放入您的html中:
<script type="text/javascript">
// cron job
$.get('./cron_job.php');
</script>
这些方法不会影响用户请求时间;)
多谢你们