PHP函式—header詳解
PHP 中 header()函式的作用是給客戶端傳送頭資訊
在 HTTP協議中,伺服器端的回答(response)內容包括兩部分:頭資訊(header) 和 體內容,這裡的頭資訊不是HTML中的<head></head>部分,同樣,體內容也不是<BODY>< /BODY>。頭資訊是使用者看不見的,裡面包含了很多項,包括:伺服器資訊、日期、內容的長度等。而體內容就是整個HTML,也就是你所能看見的全 部東西。 格式:voidheader ( string$string
[, bool $replace
=
true [, int $http_response_code
header() 函式向客戶端傳送原始的 HTTP 報頭。
客戶機的請求方式格式:是統一資源識別符號、協議版本號,後邊是MIME資訊包括請求修飾符、客戶機資訊和可能的內容!伺服器響應格式:一個狀態行包括資訊的協議版本號、一個成功或錯誤的程式碼,後邊是MIME資訊包括伺服器資訊、實體資訊和可能的內容。
通常有一下三種:
Location: xxxx:yyyy/zzzz
Content-Type: xxxx/yyyy
Status: nnn xxxxxx
常用例項
1.實現重定向(狀態碼302)
- <?php
- header(”Location: http://www.phpddt.com”);
- exit;
- ?>
2.頁面不存在(404頁面)
- <?php
- header('HTTP/1.1 404 Not Found');
- header("status: 404 Not Found");
- ?>
3.永久重定向(狀態碼301)
- <?
- Header("HTTP/1.1 301 Moved Permanently"
- Header("Location: www.phpddt.com");
- ?>
4.下載檔案
- <?php
- header(’Content-Type: application/octet-stream’);
- header(’Content-Disposition: attachment; filename=”example.zip”‘);
- header(’Content-Transfer-Encoding: binary’);
- ?>
5.設定檔案型別
- <?php
- header(’Content-Type: text/html; charset=iso-8859-1′);
- header(’Content-Type: text/html; charset=utf-8′);
- header(’Content-Type: text/plain’);
- ?>
其它常見型別
header(’Content-Type: image/jpeg’);
header(’Content-Type: application/zip’);
header(’Content-Type: application/pdf’);
header(’Content-Type: audio/mpeg’);
header(’Content-Type: application/x-shockwave-flash’);
6、 快取指令
PHP指令碼總是會生成一些動態內容,而這些內容是不應該被快取的,不管是客戶端瀏覽器還是在伺服器端和客戶端瀏覽器之間的任何代理。我們可以像這樣來強制設定瀏覽器和各個代理層不快取資料:
<?php
header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1
header("Expires: Sat, 26 Jul 1997 05:00:00 GMT"); // Date in the past
?>
void header ( string $string [, bool $replace = true [, int $http_response_code ]] ) : Send a raw HTTP header
下面有一些使用header的幾種用法:
1、使用header函式進行跳轉頁面;
header('Location:'.$url);
其中$url就是將要跳轉的url了。
這種用法的注意事項有以下幾點:
•Location和":"之間不能有空格,否則會出現錯誤(註釋:我剛測試了,在我本地環境下,沒有跳轉頁面,但是也沒有報錯,不清楚什麼原因);
•在用header前不能有任何的輸出(註釋:這點大家都知道的,如果header之前有任何的輸出,包括空白,就會出現header already sent by xxx的錯誤);
•header 後面的東西還會執行的;
2、使用header宣告content-type
header('content-type:text/html;charset=utf-8');
這個沒有什麼好說的;
3、使用header返回response 狀態碼
header(sprintf('%s %d %s', $http_version, $status_code, $description));
樣式就是這樣的;
例如:header('HTTP/1.1 404 Not Found');
4、使用header在某個時間後執行跳轉
header("Refresh: {$delay}; url={$url}");
其中$delay就是推遲跳轉的時間,$url為需要跳轉的url
例如:header('Refresh: 10; url=http://www.example.org/'); 意思為10s後跳轉到http://www.eexample.org這個網站
5、使用header控制瀏覽器快取
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . "GMT");
header("Cache-Control: no-cache, must-revalidate");
header("Pragma: no-cache");
6、執行http驗證
header('HTTP/1.1 401 Unauthorized');
header('WWW-Authenticate: Basic realm="Top Secret"');
7、使用header進行下載操作
header('Content-Type: application/octet-stream');//設定內容型別
header('Content-Disposition: attachment; filename="example.zip"'); //設定MIME使用者作為附件下載 如果將attachment換成inline意思為線上開啟
header('Content-Transfer-Encoding: binary');//設定傳輸方式
header('Content-Length: '.filesize('example.zip'));//設定內容長度
// load the file to send:
readfile('example.zip');//讀取需要下載的檔案
下面再給大家介紹PHP header 的幾種用法
跳轉頁面
header('Location:'.$url); //Location和":"之間無空格。
宣告content-type
header('content-type:text/html;charset=utf-8');
返回response狀態碼
header('HTTP/1.1 404 Not Found');
在某個時間後執行跳轉
header('Refresh: 10; url=http://www.baidu.com/'); //10s後跳轉。
控制瀏覽器快取
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . "GMT");
header("Cache-Control: no-cache, must-revalidate");
header("Pragma: no-cache");
執行http驗證
header('HTTP/1.1 401 Unauthorized');
header('WWW-Authenticate: Basic realm="Top Secret"');
執行下載操作
header('Content-Type: application/octet-stream'); //設定內容型別
header('Content-Disposition: attachment; filename="example.zip"'); //設定MIME使用者作為附件
header('Content-Transfer-Encoding: binary'); //設定傳輸方式
header('Content-Length: '.filesize('example.zip')); //設定內容長度