自動跳到url的php程式碼是什麼?
header()函數的主要功能是將HTTP協定標頭(header)輸出到瀏覽器。
語法:
void header ( string $string [, bool $replace = true [, int $http_response_code ]] )
可選參數replace指明是替換前一條類似標頭還是添加一條相同類型的標頭,預設為替換。
第二個可選參數http_response_code強制將HTTP對應代碼設為指定值。 header函數中Location類型的標頭是一種特殊的header調用,常用來實現頁面跳躍。注意:1.location和「:」號間不能有空格,否則不會跳轉。
範例:
<html> <?php /* This will give an error. Note the output * above, which is before the header() call */ header('Location: http://www.example.com/'); exit; ?>
注意:
header執行前不能有任何輸出
location和:之間不能有空格
header後面的php程式碼還會執行,所以要注意使用exit;
#推薦:《php教學》
以上是自動跳躍url的php程式碼是什麼的詳細內容。更多資訊請關注PHP中文網其他相關文章!