-
- Header(“Location: http://bbs.it-home.org”;);
- exit; //在每個重定向之後都必須加上「exit」,避免發生錯誤後,繼續執行。
- ?>
-
header(“refresh:3;url=http://bbs.it-home.org”);
- print('正在加載,請稍等…
三秒後自動跳轉~~~');
- header重定向就等價於替用戶在網址列輸入url
- ?>
複製代碼
例2,禁止頁面在IE中緩存
-
-
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
- header(Last'Last -Modified: '.gmdate('D, d M Y H:i:s') .' GMT');
- header('Cache-Control: no-store, no-cache, must-ridate');
- header('Cache-Control: post-check=0, pre-check=0',false);
- header('Pragma: no-cache');//相容http1.0和https
- ? >
- CacheControl = no-cache
- Pragma=no-cache
- Expires = -1
複製程式碼
說明:
如果伺服器上的網頁經常變化,就把Expires設定為-1,表示立即過期。
如果一個網頁每天凌晨1點更新,可以把Expires設定為隔天的凌晨1點。
當HTTP1.1伺服器指定CacheControl = no-cache時,瀏覽器就不會快取該網頁。
舊式 HTTP 1.0 伺服器不能使用 Cache-Control 標題。所以為了向後相容 HTTP 1.0 伺服器,IE使用Pragma:no-cache 標題對 HTTP 提供特殊支援。
如果用戶端透過安全連線 (https://) 與伺服器通訊,且伺服器在回應中傳回 Pragma:no-cache 標題,則 Internet Explorer 不會快取此回應。
注意:
Pragma:no-cache 僅在安全連線中使用時才防止緩存,如果在非安全頁中使用,處理方式與 Expires:-1 相同,該頁將被緩存,但被標記為立即過期。
http-equiv meta標記:
在html頁面中可以用http-equiv meta來標記指定的http訊息頭。
舊版的IE可能不支援html meta標記,所以最好使用http訊息頭來停用快取。
例3,讓使用者的瀏覽器出現找不到檔案的資訊。
網路資料顯示:php的函數header()可以傳送Status標頭,
例如:
-
- header(”Status: 404 Not Found”)
複製代碼
。
實際上瀏覽器回傳的回應卻是:
-
- header(”http/1.1 404 Not Found”);
複製代碼
第一部分為HTTP協定的版本(HTTP-Version);
第二部分為狀態碼(Status);
第三部分為原因短語(Reason-Phrase)。
例4,請使用者下載檔案( 隱藏檔案的位置 )
html標籤 就可以實現普通文件下載。
如果為了保密文件,就不能把文件連結告訴別人,可以用header函數實作文件下載。
-
-
header(“Content-type: application/x-gzip”);
- header(“Content-Disposition: attachment ; filename=文件名”);
- header(“Content-Description: PHP3 Generated Data”);
- ?>
複製代碼
例5 ,header函數前輸入內容
一般來說在header函數前不能輸出html內容,類似的還有setcookie() 和 session 函數,這些函數需要在輸出流中增加訊息頭部資訊。
如果在header()執行之前有echo等語句,當後面遇到header()時,就會報出 “Warning: Cannot modify header information – headers already sent by ….”錯誤。
在這些函數的前面不能有任何文字、空白行、回車等,而且最好在header()函數後面加上exit()函數。
例如,以下的錯誤寫法,在兩個 php程式碼段之間有一個空行:
-
- //some code here
- ?>
- //這裡應該是空行
- header(”http/1.1 403 Forbidden ”);
- exit();
- ?>
複製程式碼
原因分析:
PHP腳本開始執行 時,它可以同時發送http訊息頭(標題)訊息和主體資訊。
http訊息頭部(來自 header() 或 SetCookie() 函數)並不會立即發送,相反,它被保存到一個列表中。
如此,即可允許修改標題訊息,包括缺省的標題(例如 Content-Type 標題)。
但是,一旦腳本發送了任何非標題的輸出(例如,使用 HTML 或 print() 呼叫),那麼PHP就必須先發送完所有的Header,然後終止 HTTP header。
而後繼續發送主體數據,從這時開始,任何添加或修改Header資訊的試圖都是不允許的,並會發送上述的錯誤訊息之一。
解決方法:
修改php.ini開啟快取(output_buffering),或在程式中使用快取函數ob_start(),ob_end_flush() 等。
原理分析:
output_buffering啟用時,在腳本發送輸出時,PHP並不發送HTTP header。
相反,它將此輸出透過管道(pipe)輸入到動態增加的快取中(只能在PHP 4.0中使用,它具有中央化的輸出機制)。
可以修改/新增header,或設定cookie,因為header其實並沒有發送。
當全部腳本終止時,PHP將自動發送HTTP header到瀏覽器,然後再發送輸出緩衝中的內容。
附,其它一些有關php header函數的例子。
-
-
// ok
- header('HTTP/1.1 200 OK');
- //設定一個404頭:
- header('HTTP/1.1 404 Not Found');
- //設定位址被永久的重新導向
- header('HTTP/1.1 301 Moved Permanently');
- //前往一個新位址
- header('Location: http://bbs.it-home.org/');
- //檔案延遲轉向:
- header('Refresh: 10; url=http:/ /bbs.it-home.org/');
- print 'You will be redirected in 10 seconds';
- //當然,也可以使用html語法實作
- //
- // override X-Powered-By: PHP:
- header('X-Powered-By: PHP/ 4.4.0′);
- header('X-Powered-By: Brain/0.6b');
- //文檔語言
- header('Content-language: en');
- / /告訴瀏覽器上次修改時間
- $time = time() – 60; // or filemtime($fn), etc
- header('Last-Modified: '.gmdate('D, d M Y H: i:s', $time).' GMT');
- //告訴瀏覽器文件內容沒有改變
- header('HTTP/1.1 304 Not Modified');
- //設定內容長度
- header('Content-Length: 1234′);
- //設定為一個下載類型
- header('Content-Type: application/octet-stream');
- header('Content- Disposition: attachment; filename=”example.zip”');
- header('Content-Transfer-Encoding: binary');
- // load the file to send:
- readfile('example.zip ');
- // 對目前文件停用快取
- header('Cache-Control: no-cache, no-store, max-age=0, must-ridate');
- header('Expires : Mon, 26 Jul 1997 05:00:00 GMT'); // Date in the past
- header('Pragma: no-cache');
- //設定內容類型:
- 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'); //JPG圖片
- header('Content-Type: application/zip'); // ZIP檔案
- header('Content-Type: application/pdf'); // PDF檔案
- header('Content-Type: audio/mpeg'); // 音訊檔案
- header('Content-Type : application/x-shockwave-flash'); //Flash動畫
- //顯示登陸對話框
- header('HTTP/1.1 401 Unauthorized');
- header('WWW-Authenticate: Basic realm =”Top Secret”');
- print 'Text that will be displayed if the user hits cancel or ';
- print 'enters wrong login data';
- ?>
複製程式碼
|