如何在 5 分钟后重定向到另一个页面?

2021-12-31 00:00:00 timer php javascript html

如何在使用 PHP 5 分钟后重定向到另一个页面?

How do I redirect to another page after 5 minutes using PHP?

推荐答案

如果您真的想为此使用 PHP,那么您可以这样做:

If you really want to use PHP for this, here you go:

<?php header("Refresh: 300; URL=http://www.stackoverflow.com/"); ?>

相关文章