PHP頁跳轉一、header()函數
header()函數是PHP中進行頁面跳躍的一種十分簡單的方法。 header()函數的主要功能是將HTTP協定標頭(header)輸出到瀏覽器。
header()函數的定義如下:
void header (string string [,bool replace [,int http_response_code]])
可選參數replace指明是替換前指示一條類似標頭還是添加一條相同類型的標頭,預設為替換。
第二個可選參數http_response_code強制將HTTP對應代碼設為指定值。 header函數中Location類型的標頭是一種特殊的header調用,常用來實現頁面跳躍。注意:1.location和「:」號間不能有空格,否則不會跳轉。
2.用header前不能有任何的輸出。
3.header後的PHP程式碼也會執行。例如
< ?php //重定向浏览器 header("Location: //m.sbmmt.com"); //确保重定向后,后续代码不会被执行 exit; ?>
PHP頁面跳轉二、Meta標籤
Meta標籤是HTML中負責提供文件PHP程式中使用該標籤,也可以實現頁面跳躍。若定義http-equiv為refresh,則開啟該頁面時將根據content規定的值在一定時間內跳到對應頁面。若設定content="秒數;url=網址",則定義了經過多久後頁面跳到指定的網址。
< meta http-equiv="refresh" content="1;url=http://blog.csdn.net/abandonship">
例,以下程式meta.php實現在該頁面中停留一秒鐘後頁面自動跳轉。
<?php $url = "http://blog.csdn.net/abandonship"; ?> <html> <head> <meta http-equiv="refresh" content="1;url=<?php echo $url; ?>"> </head> <body> It's transit station. </body> </html>
PHP頁面跳轉三、JavaScript
<?php $url = "http://blog.csdn.net/abandonship"; echo "<script type='text/javascript'>"; echo "window.location.href='$url'"; echo "</script>"; ?>
相關文章: