程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php header函數的詳解

php header函數的詳解

編輯:關於PHP編程

header函數在php中是發前一些頭部信息的,如果我們可以直接使用它來做301跳轉等,下面我來總結關於header函數用法與一些常用見問題解決方法。  

發送一個原始 HTTP 標頭[Http Header]到客戶端。標頭 (header) 是服務器以 HTTP 協義傳 HTML 資料到浏覽器前所送出的字串,在標頭與 HTML 文件之間尚需空一行分隔

例1

 代碼如下 復制代碼

Header(“Location: http://www.bkjia.com”;);
exit; //在每個重定向之後都必須加上“exit”,避免發生錯誤後,繼續執行。
?>

禁止頁面在IE中緩存

 代碼如下 復制代碼

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-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

實現文件下載

 代碼如下 復制代碼

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()可以向浏覽器發送Status標頭
如 

 代碼如下 復制代碼 header(”Status: 404 Not Found”)。

但是我發現實際上浏覽器返回的響應卻是:

 代碼如下 復制代碼

// ok
header(‘HTTP/1.1 200 OK’);

//設置一個404頭:
header(‘HTTP/1.1 404 Not Found’);

//設置地址被永久的重定向
header(‘HTTP/1.1 301 Moved Permanently’);


HTTP/1.x 200 OK
Date: Thu, 03 Aug 2006 07:49:11 GMT
Server: Apache/2.0.55 (Win32) PHP/5.0.5
X-Powered-By: PHP/5.0.5
Status: 404 Not Found
Content-Length: 0
Keep-Alive: timeout=15, max=98
Connection: Keep-Alive
Content-Type: text/html

注意事項有以下幾點:

•Location和":"之間不能有空格,否則會出現錯誤(注釋:我剛測試了,在我本地環境下,沒有跳轉頁面,但是也沒有報錯,不清楚什麼原因);
•在用header前不能有任何的輸出(注釋:這點大家都知道的,如果header之前有任何的輸出,包括空白,就會出現header already sent by xxx的錯誤);
•header 後面的東西還會執行的;


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved