首頁  >  文章  >  後端開發  >  PHP中的header是什麼

PHP中的header是什麼

清浅
清浅原創
2019-01-25 15:44:5516605瀏覽

php中的header主要用於向客戶端發送原始的http報頭,常用的有用來通知瀏覽器頁面不存在,延遲轉向、表示內容類型、聲明下載文件、對當前文檔停用快取、顯示一個需要驗證的登陸對話框等等

PHP中的header是什麼

#【推薦課程:##PHP教學

PHP中的header() 函數用於向客戶端發送原始的HTTP 標頭,今天將為大家分享一些在PHP中常用的header函數頭具有一定的參考價值,希望對大家有幫助。

header('HTTP/1.1 200 OK'); // ok 正常存取

header('HTTP/1.1 404 Not Found'); //通知瀏覽器頁面不存在

header('HTTP/1.1 301 Moved Permanently'); //設定位址被永久的重定向301

header('Location: http://www.ithhc.cn/'); //跳到一個新的位址

header('Refresh: 10; url=http://www.ithhc.cn/'); //延遲轉向也就是隔幾秒鐘跳轉

header('X-Powered-By: PHP/6.0.0'); //修改X-Powered-By資訊

header('Content-language: en'); //文檔語言

header('Content-Length: 1234'); //設定內容長度

header('Last-Modified: '.gmdate('D, d M Y H:i:s' , $time).' GMT'); //告訴瀏覽器最後一次修改時間

header('HTTP/1.1 304 Not Modified'); //告訴瀏覽器文件內容沒有改變

#表示內容類型

header('Content-Type: text/html; charset=utf-8'); //網頁編碼

header(' Content-Type: text/plain'); //純文字格式

header('Content-Type: image/jpeg'); //JPG、JPEG

 header('Content- Type: application/zip'); // ZIP檔

header('Content-Type: application/pdf'); // PDF檔案

header('Content-Type: audio/ mpeg'); // 音訊檔案

 header('Content-type: text/css'); //css檔案

header('Content-type: text/javascript'); //js檔案

header('Content-type: application/json'); //json

header('Content-type: application/pdf'); //pdf

header('Content-type: text/xml'); //xml

header('Content-Type: application/x-shockw**e-flash'); //Flash動


宣告一個下載的檔案

header('Content-Type: application/octet-stream');

header(' Content-Disposition: attachment; filename="ITblog.zip"');

header('Content-Transfer-Encoding: binary');

#readfile('test.zip');

對目前文件停用快取

header('Cache-Control: no-cache, no-store, max-age=0, must-revalidate');

header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');

顯示一個需要驗證的登陸對話框

header('HTTP/1.1 401 Unauthorized'); 

header('WWW-Authenticate: Basic realm="Top Secret"'); 

 宣告一個需要下載的xls檔案

header('Content-Disposition: attachment; filename=ithhc.xlsx');

header('Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml. sheet');

header('Content-Length: '.filesize('./test.xls'));

header('Content-Transfer-Encoding: binary');

header('Cache-Control: must-revalidate'); 

header('Pragma: public'); 

readfile('./test.xls') ; 

以上是PHP中的header是什麼的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn