在 PHP 中,可以使用以下兩種方法來設置超時自動關閉頁面:
header()
函數設置頁面重定向:header("Refresh:5;url=closepage.php");
以上代碼將在當前頁面打開 5 秒后,自動跳轉到 closepage.php
頁面。
window.location
方法進行頁面重定向:echo "<script>
setTimeout(function(){
window.location.href = 'closepage.php';
}, 5000); // 5 秒后自動跳轉
</script>";
以上代碼將在當前頁面打開后的 5 秒后,自動跳轉到 closepage.php
頁面。
這兩種方法都會在一定時間后自動關閉當前頁面。