当我使用header()时,在我的srcipt完成执行后我被删除了,同样的for include,甚至当我使用html并将我的php放在那里iframe只在php完成后才能工作。
<?php
header("Location: localhost/index.html");
sleep(120);
doSomethingUsefull();
?>
作为索引之前的sain是在120年代之后构建的。 还有其他方法可以包含一些内容,获取redictet并继续执行我的脚本吗?
答案 0 :(得分:0)
这个怎么样?
<?php
header("Location: localhost/index.html");
session_write_close();
fastcgi_finish_request();
sleep(120);
doSomethingUsefull();
?>