我有一个页面在 10 秒后使用以下代码重定向用户。
<META HTTP-EQUIV="refresh" CONTENT="10;URL=login.php">
然后我有这个在 PHP 中回显的代码,并希望“10”(秒)动态倒计时为 10、9、8、7 ......所以用户可以看到页面重定向之前剩下的秒数。
echo "We cant find you on the system. <br/> Please return to the <b><a href='login.php'>Login</a></b> page and ensure that <br/>you have entered your details correctly.
<br>
<br>
<b>Warning</b>: You willl be redirected back to the Login Page <br> in <b>10 Seconds</b>";
我想知道是否有一种方法可以在 PHP 中完成,如果没有,实现相同目标的最佳方法是什么?