php實作頁面跳轉的方法有:1、在PHP腳本程式碼中實現跳躍;2、使用js方法實現延遲跳轉;3、使用HTML腳本程式碼完成跳轉。
php實作頁面跳轉的方法有:
##1、在PHP腳本程式碼中實現
<?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腳本程式碼中實作
1.window.location.href方法<script type="text/javascript"> window.location.href="helloworld.php" </script>
<script type="text/javascript"> setTimeout("window.location.href='helloworld.php'",3000); </script>
<script type="text/javascript">window.location.assign("helloworld.php"); </script>
<script type="text/javascript"> window.location.replace("helloworld.php"); </script>
<script type="text/javascript"> window.open("index.php",_blank,width=300px); </script>
3、使用HTML腳本程式碼完成跳轉
#在標籤裡執行程式碼
##直接插入這句程式碼就可以<meta http-equiv="refresh" content="3;url='helloworld.php'">
php圖文教學
以上是php實作頁面跳轉的方法有哪些的詳細內容。更多資訊請關注PHP中文網其他相關文章!