超时处理电子邮件 php

Timeout handle email php

我想将我的用户重定向到一个新页面,但当前站点继续 运行 一个脚本,该脚本会在 10 分钟后在指定地址发送线程消息。我试过这样的事情:

Header('Location: xy.com');
sleep(100);
do_the_email_sending_here();

但实际上并没有用,因为网站等待了100秒,所以网站没有立即重定向我。知道我该如何解决这个问题吗?知道 while() 或 for() 循环吗?

试试这个:

         Header("Refresh: 600;", "Location: xy.com");
         do_the_email_sending_here();

Refresh: 600; 将在 600 秒或 10 分钟内完成您的 header。

问题解决方案:Cron Job,好好学习