用PHP实现"等待指定的时间,然后再跳转到指定页面".
也就是用php实现和HTML中的
<meta http-equiv="refresh" content="3; url=http://axgle.za.net">一样的效果。
[php]
/*
补充说明:
若等待时间为0,则与header("location:")等效。
*/
header("refresh:3;url=http://axgle.za.net");
print(‘正在加载,请稍等…<br>三秒后自动跳转~~~’);
[/php]
这个以前倒没有注意到….