php中的header主要用於向客戶端發送原始的http報頭,常用的有用來通知瀏覽器頁面不存在,延遲轉向、表示內容類型、聲明下載文件、對當前文檔停用快取、顯示一個需要驗證的登陸對話框等等
#【推薦課程:##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'); //設定位址被永久的重定向301header('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'); //jsonheader('Content-type: application/pdf'); //pdfheader('Content-type: text/xml'); //xmlheader('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中文網其他相關文章!