-
-
Header("Location: http://bbs.it-home.org";);
- exit;//在每個重定向之後都要加上「exit",避免發生錯誤後,繼續執行。
- ?>
複製程式碼
2,
-
-
header("refresh:2;url=http://bbs.it-home.org");
- echo "正在加載,請稍等...
三秒後自動跳轉至程式設計師之家...";
- ?>
複製程式碼
例二:禁止頁面在IE中快取
讓瀏覽者每次都能得到最新的內容,而不是 Proxy 或 cache 中的資料:
-
-
header( 'Expires: Fri, 4 Dec 2009 09:00:00 GMT' );
- header( 'Last -Modified: ' . gmdate( 'D, d M Y H:i:s' ) . ' GMT' );
- header( 'Cache-Control: no-store, no-cache, must-revalidate' );
- 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訊息頭來停用快取。
例三: 讓使用者的瀏覽器出現找不到檔案的資訊。
網路上很多資料這樣寫:php的函數header()可以傳送Status標頭,
如 header(”Status: 404 Not Found”)。但實際上瀏覽器回傳的回應是:
-
- header(”http/1.1 404 Not Found”);
-
複製代碼
第一部分為HTTP協定的版本(HTTP-Version);第二部分為狀態碼(Status);第三部分為原因短語(Reason-Phrase)。
例四:讓使用者下載檔案( 隱藏檔案的位置 )
html標籤 就可以實現普通文件下載。如果為了保密文件,就不能把文件連結告訴別人,可以用header函數實作文件下載。
-
-
header("Content-type: application/x-gzip");
- header("Content-Disposition: attachment ; filename=文件名/");
- header("Content-Description: PHP3 Generated Data");
- ?>
複製代碼
例四: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函數的小例子。
1,使用heder指令,強制使瀏覽器使用新鮮的內容(無快取) 。
為網址增加了一個獨特的編號,使其每次都讀取新的內容,避免快取。
-
-
- print ""; //通常讀取的是快取檔案
- ?>
-
- print ""; //增加了唯一的編號,使瀏覽器重新請求
- w//print "";
- ?>
複製程式碼
2,將圖片傳送給瀏覽器顯示。
-
-
function PE_img_by_path($PE_imgpath = "")
- {
- if (files_exists(PE_img) {$ 🎜>$PE_imgarray = pathinfo($PE_imgpath);
- $iconcontent = file_get_contents($PE_imgpath);
- header("Content-type: image/" . $PE_imgarray["extension"]); ('Content-length: ' . strlen($iconcontent));
- echo $iconcontent;
- die(0);
- }
- return false;
- }
- ?>
- return false;
- }
?>
複製程式碼
附,一個完整而全面的有關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://www.baidu.com');
- //檔案延遲轉向:
- header('Refresh: 10; url=http://www. example.org/');
- print 'You will be redirected in 10 seconds';
- //當然,也可以使用html語法實作
- // header('Content-Transfer-Encoding: binary');
- // load the file to send:
- readfile('example.zip');
- / / 對目前文件停用快取
- header('Cache-Control: no-cache, no-store, max-age=0, must-revalidate');
- 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';
- ?>
複製代碼?>
|