這篇文章主要介紹了關於PHP中常用的header頭部定義,有著一定的參考價值,現在分享給大家,有需要的朋友可以參考一下
<?phpheader('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('Accept-Ranges:bytes');//聲明瀏覽器返回大小是按位元組進行計算header('Content-Disposition: attachment; filename="ITblog.zip"');//聲明作為附件處理和下載後檔案的名稱//告訴瀏覽器檔案的總大小//告訴瀏覽器檔案的總大小 $fileSize = filesize($filePath);//坑 filesize 如果超過2G 低版本php會返回負數 header('Content-Length:' . $fileSize); //注意是'Content-Length:' 非Accept-Lengthheader('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')
以上就是本文的全部內容,希望對大家的學習有所協助,更多相關內容請關注topic.alibabacloud.com!
相關推薦:
初步進行PHP多進程編程的介紹
php 檔案 建立 剪下 複製 常用的函數