我想将用户重定向到新页面,但当前站点继续运行脚本,该脚本在10分钟后在指定地址发送线程消息。我试过这样的事情:
Header('Location: xy.com');
sleep(100);
do_the_email_sending_here();
但实际上它不起作用,因为该网站等待了100秒,因此该网站不会立即重定向到我。知道怎么解决这个问题?对while()或for()循环有什么想法吗?
答案 0 :(得分:0)
试试这个:
Header("Refresh: 600;", "Location: xy.com");
do_the_email_sending_here();
Refresh: 600;
会在600秒或10分钟内完成标题。
答案 1 :(得分:0)
问题的解决方案:Cron Job,良好的学习。