PHP

PHP 跳转到URL

在PHP脚本代码中实现

跳转:

 <?php header("location:url地址") ?> 
例如
 <?php header("location:http://www.enjointhing.cn")?> // 页面会立即跳转

延时跳转:

<?php header("Refresh:秒数;url=url") ?>
例如
<?php header("Refresh:3;url=http://www.enjointhing.cn")?> //会在3秒后执行跳转
<?php sleep(3); header("location:http://www.enjointhing.cn")?>
 //调用了sleep()方法延时n秒后跳转