即时重做并继续执行php脚本

时间:2013-10-07 16:28:35

标签: php

当我使用header()时,在我的srcipt完成执行后我被删除了,同样的for include,甚至当我使用html并将我的php放在那里iframe只在php完成后才能工作。

<?php 
header("Location: localhost/index.html");
sleep(120);
doSomethingUsefull();
?>

作为索引之前的sain是在120年代之后构建的。 还有其他方法可以包含一些内容,获取redictet并继续执行我的脚本吗?

1 个答案:

答案 0 :(得分:0)

这个怎么样?

<?php 
    header("Location: localhost/index.html");

    session_write_close();
    fastcgi_finish_request();

    sleep(120);
    doSomethingUsefull();
?>