header()函數跳轉。
void header(string string[,bool replace[,int http_response_code]]);
可選參數replace指明是替換前一條類似標頭還是添加一條相同類型的標頭,默認為替換。
第二個可選參數http_response_code強制將http相應代碼設為指定值。header函數中location類型的標頭是一種特殊的header調用,常用來實現頁面跳轉。
注意:
location和「:」號間不能有空格,否則不會跳轉。
在用header前不能有任何的輸出。
header後的php代碼還會被執行。
舉例:
<?php//重定向地址header("location:http://www.xxxxx.com");//運用exit進行退出確保重定向後,後續代碼不會被執行exit;?>
void header(string string[,bool replace[,int http_response_code]]);
可選參數replace指明是替換前一條類似標頭還是添加一條相同類型的標頭,默認為替換。
第二個可選參數http_response_code強制將http相應代碼設為指定值。header函數中location類型的標頭是一種特殊的header調用,常用來實現頁面跳轉。
注意:
location和「:」號間不能有空格,否則不會跳轉。
在用header前不能有任何的輸出。
header後的php代碼還會被執行。
舉例:
<?php//重定向地址header("location:http://www.xxxxx.com");//運用exit進行退出確保重定向後,後續代碼不會被執行exit;?>