php header功能的使用

2021-07-15 04:22:33 字數 1840 閱讀 2414

header() 函式向客戶端傳送原始的 http 報頭。

複製**

**如下:

<?php

//200 正常狀態

// 301 永久重定向,記得在後面要加重定向位址 location:$url

// 重定向,其實就是302 暫時重定向

header('location: ');

// 設定頁面304 沒有修改

// 顯示登入框,

header('www-authenticate: basic realm="登入資訊"');

echo '顯示的資訊!';

// 403 禁止訪問

// 404 錯誤

// 500 伺服器錯誤

// 3秒後重定向指定位址(也就是重新整理到新頁面與 相同)

header('refresh: 3; url=');

echo '10後跳轉到';

// 重寫 x-powered-by 值

header('x-powered-by: php/5.3.0');

header('x-powered-by: brain/0.6b');

//設定上下文語言

header('content-language: en');

// 設定頁面最後修改時間(多用於防快取)

$time = time() - 60; //建議使用filetime函式來設定頁面快取時間

header('last-modified: '.gmdate('d, d m y h:i:s', $time).' gmt');

// 設定內容長度

header('content-length: 39344');

header('content-disposition: attachment; filename="example.zip"');

header('content-transfer-encoding: binary');

readfile('example.zip');//讀取檔案到客戶端

//禁用頁面快取

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

header('expires: mon, 26 jul 1997 05:00:00 gmt');

header('pragma: no-cache');

//設定頁面頭資訊

header('content-type: text/html; charset=iso-8859-1');

header('content-type: text/html; charset=utf-8');

header('content-type: text/plain');

header('content-type: image/jpeg');

header('content-type: audio/mpeg');

//.... 至於content-type 的值 可以去查查 w3c 的文件庫,那裡很豐富

?>

php header 函式的使用

標頭 header 是伺服器以 http 協議傳 html 資料到瀏覽器前所送出的字串,在標頭與 html 檔案之間尚需空一行分隔。有關 http 的詳細說明,可以參考坊間的相關書籍或更詳細的 rfc 2068 官方檔案 在 php 中送回 html 資料前,需先傳完所有的標頭。注意 傳統的標頭一定...

php header 函式使用說明

php只是以http協議將html文件的標頭送到瀏覽器,告訴瀏覽器具體怎麼處理這個頁面,至於傳送的內容則需要熟悉一下http協議了,與php無關了,可參照 header 函式使用說明 一 作用 php只是以http協議將html文件的標頭送到瀏覽器,告訴瀏覽器具體怎麼處理這個頁面,至於傳送的內容則需...

PHP header 函式及其常見使用

向客戶端傳送原始的http報頭 需注意 header函式必須在任何實際的輸出前呼叫,無論是一般的html標籤 檔案中空行,或者來自php。就是在這個函式之前不能有任何形式的輸出。引數 描述string 必需。規定要傳送的報頭字串。replace 可選。指示該報頭是否替換之前的報頭,或新增第二個報頭。...