当前位置:首页 > PHP教程 > php应用 > 列表

PHP定时跳转

发布:smiling 来源: PHP粉丝网  添加日期:2013-12-10 09:01:33 浏览: 评论:0 

用PHP实现"等待指定的时间,然后再跳转到指定页面".也就是用php实现和HTML中的一样的效果。

  1. <? 
  2. /** 
  3. @title:PHP定时跳转 
  4. @功能:等待指定的时间,然后再跳转到指定页面(代替html meta方式) 
  5. */ 
  6. header("refresh:3;url=http://www.phpfensi.com"); 
  7. print('正在加载,请稍等...<br>三秒后自动跳转~~~'); 
  8. /* 
  9. 补充说明: 
  10. 若等待时间为0,则与header("location:")等效。 
  11. */ 
  12. ?> 

Tags: PHP 定时 跳转

分享到: