0

当我使用 header() 时,在我的 srcipt 完成执行后,我得到了 redicted,对于 include 也是如此,甚至当我使用 html 并将我的 php 放在那里时,iframe 在 php 完成后才可以工作。

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

正如 index.html 在 120 年代之后构建的那样。有没有其他方法可以包含一些东西,得到 redictet 并且我的脚本继续执行?

4

1 回答 1

0

那这个呢?

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

    session_write_close();
    fastcgi_finish_request();

    sleep(120);
    doSomethingUsefull();
?>
于 2013-10-07T16:38:20.723 回答