php怎么实现页面跳转?
程序员文章站
2022-05-23 15:35:07
...
php实现页面跳转的几种方式
1、使用header()函数
<?php header("location:url地址"); ?>
例如
<?php header("location:helloworld.php"); ?> //页面会立即跳转,因为header执行了location重定向
延迟跳转(比如登陆成功后会有几秒钟等待时间,然后跳转到了其他页面)
<?php header("Refresh:秒数;url=地址"); ?>
例如
<?php header("Refresh:3;url=helloworld.php"); ?>
会在3秒后执行跳转<?php sleep(3); header("location:url地址")?>
调用了sleep()方法,效果也是x秒后执行跳转
2、输出js代码,使用window.location.href来跳转
<?php echo "<script>window.location.href='http://www.php.cn'</script>"; ?>
3、输出<meta>
<?php echo "<meta charset='UTF-8' http-equiv='refresh' content='2;url=https://www.php.cn'>"; ?>
更多相关知识,请访问 PHP中文网!!