我正在研究 php-codeigniter 我在连接关闭后使用 php 脚本执行的代码它在本地服务器中运行良好但在 iis 中无法运行,这是实时服务器
这是我的代码
set_time_limit(0);
ob_end_clean();
ignore_user_abort(true);
header("Connection: close\r\n");
header("Content-Encoding: none\r\n");
ob_start();
echo date('Y-m-d H:i:s').PHP_EOL;
$size = ob_get_length();
header("Content-Length: $size",TRUE);
ob_end_flush();
ob_flush();
flush();
sleep(20);
file_put_contents('c:/tmp.txt', date('Y-m-d H:i:s'));
谢谢 srikanth bollineni