91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

php中header的作用是什么

發布時間:2020-10-15 17:06:54 來源:億速云 閱讀:233 作者:小新 欄目:編程語言

這篇文章主要介紹了php中header的作用是什么,具有一定借鑒價值,需要的朋友可以參考下。希望大家閱讀完這篇文章后大有收獲。下面讓小編帶著大家一起了解一下。

header — 發送原生 HTTP 頭

void header ( string $string [, bool $replace = true [, int $http_response_code ]] )

參數:

string

  有兩種特別的頭。第一種以"HTTP/"開頭的 (case is not significant),將會被用來計算出將要發送的HTTP狀態碼。 例如在 Apache 服務器上用 PHP 腳本來處理不存在文件的請求(使用 ErrorDocument 指令), 就會希望腳本響應了正確的狀態碼。

<?php
     header("HTTP/1.0 404 Not Found");
?>

  第二種特殊情況是"Location:"的頭信息。它不僅把報文發送給瀏覽器,而且還將返回給瀏覽器一個 REDIRECT(302)的狀態碼,除非狀態碼已經事先被設置為了201或者3xx。

<?php
header("Location: http://www.example.com/"); /* Redirect browser */

/* Make sure that code below does not get executed when we redirect. */
exit;
?>

replace

  可選參數 replace 表明是否用后面的頭替換前面相同類型的頭。 默認情況下會替換。如果傳入 FALSE,就可以強制使相同的頭信息并存。例如:

<?php
     header('WWW-Authenticate: Negotiate');
     header('WWW-Authenticate: NTLM', false);
 ?>

http_response_code

  強制指定HTTP響應的值。注意,這個參數只有在報文字符串(string)不為空的情況下才有效。

header函數的常見用處有以下幾點:

  1、重定向

    header('Location: http://www.example.com/');

  2、指定內容:

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

  3、附件:

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

    //指定內容為附件,指定下載顯示的名字

    header('Content-Disposition: attachment; filename="downloaded.pdf"');

    //打開文件,并輸出

    readfile('original.pdf');

    以上代碼可以在瀏覽器產生文件對話框的效果

  4、讓用戶獲取最新的資料和數據而不是緩存

    header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1
    header("Expires: Sat, 26 Jul 1997 05:00:00 GMT");   // 設置臨界時間

<?php
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的作用是什么內容對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,遇到問題就找億速云,詳細的解決方法等著你來學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

江华| 会宁县| 鄄城县| 抚远县| 南靖县| 抚顺县| 唐山市| 延边| 霍邱县| 邯郸市| 木里| 本溪市| 威信县| 怀仁县| 苍溪县| 正定县| 闵行区| 开封县| 毕节市| 曲麻莱县| 东丰县| 陆丰市| 柳州市| 龙州县| 中江县| 鹤山市| 青神县| 赤壁市| 彭泽县| 辽宁省| 鹿泉市| 开阳县| 东至县| 页游| 乳山市| 行唐县| 广安市| 文安县| 元阳县| 泰来县| 临澧县|