
php实现页面跳转的几种方式
1、使用header()函数
<?php
header("location:url地址");
?>例如
<?php
header("location:helloworld.php");
?>
//页面会立即跳转,因为header执行了location重定向延迟跳转(比如登陆成功后会有几秒钟等待时间,然后跳转到了其他页面)
立即学习“PHP免费学习笔记(深入)”;
<?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中文网!!
PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号