Codeigniter - AJAX关闭连接并在后台运行php脚本

时间:2016-04-24 17:35:54

标签: php ajax codeigniter codeigniter-3

我正在尝试编写一个ajax来在codeigniter中长时间在后台启动php文件执行。 我编写了代码来将输出刷新到ajax,然后想要在后台执行其余的代码。 下面编写的代码在localhost上工作正常但在实际服务器上没有 我也禁用了gzip压缩但没有运气 希望你能帮我解决这个问题。

<?php ignore_user_abort(true); ob_start(); echo "show something to user"; session_write_close(); header("Content-Encoding: none"); header("Content-Length: ".ob_get_length()); header("Connection: close"); ob_end_flush(); flush(); sleep(5); // start rest of background process in php ?>

0 个答案:

没有答案