程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> 詳細解釋PHP中header和content-type 參數

詳細解釋PHP中header和content-type 參數

編輯:關於PHP編程

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

header()是用來發送 HTTP Header的。replace是個可選的參數,指示是否替代一個先期相似的header,
或者增加第2個相同類型的header。默認的是替 代,但是如果你傳遞FALSE參數給第2個參數(即replace),你
能強制使用多個相同類型的header。例如:

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

第 二個可選的參數http_response_code強置HTTP響應代碼的值。(PHP>4.3.0)

有兩種特定的 header調 用。一種是header用字符串”HTTP/”開頭的(大小寫無所謂),它用
來指定發出的HTTP狀態碼。舉個例子來說,如果你已經配置 Apache使用javascript:;" onClick="javascript:tagshow(event, 'PHP');" target="_self">PHP腳 本來處理請求
不存在的文件(用ErrorDocument指令),你可能想確認你的腳本生成一個合適的狀態碼:

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

注意:HTTP狀態行 總是最先發送給客戶端的,不管你實際上在什麼時候調用header()函數。
除非你的HTTP header已經發送出去了,否則,在任何時候,狀態將會被header()函數用一個新的
狀態行 覆蓋。
在PHP 3中,只有PHP編譯為Apache的模塊是,並且用下面Staus Header才能取得同樣的效果

<?php
header(”Status: 404 Not Found”);
?>

第二中特殊的情況就是”Location:”header。如果沒有某些 3xx的狀態碼已經發出的話,它不僅
發出Location行,而且發出一個重定向的狀態碼(302)。

<?php
header(”Location: http://www.BkJia.com”);
exit;
?>

注意:HTTP/1.1要求一個絕對 URI作為Location的參數:包括協議頭,主機名和絕對路徑,
但是某些客戶端可以接受相對URI。你可 用$_SERVER['HTTP_HOST'] $_SERVER['PHP_SELF']和
dirname()來從一個相對URI來產生絕對 URI。

<?php
header(”Location: http://” . $_SERVER['HTTP_HOST']
. dirname($_SERVER['PHP_SELF'])
. “/” . $relative_url);
?>

PHP腳本通常生成一些動態的內容,不必被客戶端的浏覽器或者代理服務器緩 存。許多代理和客戶端可以
強制禁止緩存:

<?php
// 時間總是過去的
header(”Expires: Mon, 26 Jul 1997 05:00:00 GMT”);
// 文件總是被修改的
header(”Last-Modified: ” . gmdate(”D, d M Y H:i:s”) . ” GMT”);

// HTTP/1.1
header(”Cache-Control: no-store, no-cache, must-revalidate”);
header(”Cache-Control: post-check=0, pre-check=0〃, false);

// HTTP/1.0
header(”Pragma: no-cache”);
?>

注意:你可能發現即使你沒有輸出上面的header,你的頁面還是不能被 緩存。可能是有幾個選項改變了默認的
緩存行為。見sessrion_cache_limiter().

如果你想提示用戶保 存你 發送過去的數據,比如一個已經生成的PDF文件,你可以用Content_Dispostion
頭來提供一個推薦的文件名,強迫浏覽器顯示保存對 話框.

<?php
header(’Content-type: application/pdf’);
header(’Content-Disposition: attachment; filename=”downloaded.pdf”‘);
readfile(’original.pdf’);
?>

對 於IE,要加上Connection頭
header(”HTTP/1.1 301 Moved Permanently”);
header(”Location: “.$url);
header(”Connection: close”);

header 中Content-type的種類 Content-type 的說明:
'hqx' -> 'application/mac-binhex40',
'cpt' -> 'application/mac-compactpro',
'doc' -> 'application/msword',
'bin' -> 'application/octet-stream',
'dms' -> 'application/octet-stream',
'lha' -> 'application/octet-stream',
'lzh' -> 'application/octet-stream',
'exe' -> 'application/octet-stream',
'class' -> 'application/octet-stream',
'so' -> 'application/octet-stream',
'dll' -> 'application/octet-stream',
'oda' -> 'application/oda',
'pdf' -> 'application/pdf',
'ai' -> 'application/postscript',
'eps' -> 'application/postscript',
'ps' -> 'application/postscript',
'smi' -> 'application/smil',
'smil' -> 'application/smil',
'mif' -> 'application/vnd.mif',
'xls' -> 'application/vnd.ms-excel',
'ppt' -> 'application/vnd.ms-powerpoint',
'wbxml' -> 'application/vnd.wap.wbxml',
'wmlc' -> 'application/vnd.wap.wmlc',
'wmlsc' -> 'application/vnd.wap.wmlscriptc',
'bcpio' -> 'application/x-bcpio',
'vcd' -> 'application/x-cdlink',
'pgn' -> 'application/x-chess-pgn',
'cpio' -> 'application/x-cpio',
'csh' -> 'application/x-csh',
'dcr' -> 'application/x-director',
'dir' -> 'application/x-director',
'dxr' -> 'application/x-director',
'dvi' -> 'application/x-dvi',
'spl' -> 'application/x-futuresplash',
'gtar' -> 'application/x-gtar',
'hdf' -> 'application/x-hdf',
'js' -> 'application/x-javas
cript',
'skp' -> 'application/x-koan',
'skd' -> 'application/x-koan',
'skt' -> 'application/x-koan',
'skm' -> 'application/x-koan',
'latex' -> 'application/x-latex',
'nc' -> 'application/x-netcdf',
'cdf' -> 'application/x-netcdf',
'sh' -> 'application/x-sh',
'shar' -> 'application/x-shar',
'swf' -> 'application/x-shockwave-flash',
'sit' -> 'application/x-stuffit',
'sv4cpio' -> 'application/x-sv4cpio',
'sv4crc' -> 'application/x-sv4crc',
'tar' -> 'application/x-tar',
'tcl' -> 'application/x-tcl',
'tex' -> 'application/x-tex',
'texinfo' -> 'application/x-texinfo',
'texi' -> 'application/x-texinfo',
't' -> 'application/x-troff',
'tr' -> 'application/x-troff',
'roff' -> 'application/x-troff',
'man' -> 'application/x-troff-man',
'me' -> 'application/x-troff-me',
'ms' -> 'application/x-troff-ms',
'ustar' -> 'application/x-ustar',
'src' -> 'application/x-wais-source',
'xhtml' 'application/xhtml+xml',
'xht' -> 'application/xhtml+xml',
'zip' -> 'application/zip',
'au' -> 'audio/basic',
'snd' -> 'audio/basic',
'mid' -> 'audio/midi',
'midi' -> 'audio/midi',
'kar' -> 'audio/midi',
'mpga' -> 'audio/mpeg',
'mp2' -> 'audio/mpeg',
'mp3' -> 'audio/mpeg',
'aif' -> 'audio/x-aiff',
'aiff' -> 'audio/x-aiff',
'aifc' -> 'audio/x-aiff',
'm3u' -> 'audio/x-mpegurl',
'ram' -> 'audio/x-pn-realaudio',
'rm' -> 'audio/x-pn-realaudio',
'rpm' -> 'audio/x-pn-realaudio-plugin',
'ra' -> 'audio/x-realaudio',
'wav' -> 'audio/x-wav',
'pdb' -> 'chemical/x-pdb',
'xyz' -> 'chemical/x-xyz',
'bmp' -> 'image/bmp',
'gif' -> 'image/gif',
'ief' -> 'image/ief',
'jpeg' -> 'image/jpeg',
'jpg' -> 'image/jpeg',
'jpe' -> 'image/jpeg',
'png' -> 'image/png',
'tiff' -> 'image/tiff',
'tif' -> 'image/tiff',
'djvu' -> 'image/vnd.djvu',
'djv' -> 'image/vnd.djvu',
'wbmp' -> 'image/vnd.wap.wbmp',
'ras' -> 'image/x-cmu-raster',
'pnm' -> 'image/x-portable-anymap',
'pbm' -> 'image/x-portable-bitmap',
'pgm' -> 'image/x-portable-graymap',
'ppm' -> 'image/x-portable-pixmap',
'rgb' -> 'image/x-rgb',
'xbm' -> 'image/x-xbitmap',
'xpm' -> 'image/x-xpixmap',
'xwd' -> 'image/x-xwindowdump',
'igs' -> 'model/iges',
'iges' -> 'model/iges',
'msh' -> 'model/mesh',
'mesh' -> 'model/mesh',
'silo' -> 'model/mesh',
'wrl' -> 'model/vrml',
'vrml' -> 'model/vrml',
'css' -> 'text/css',
'html' -> 'text/html',
'htm' -> 'text/html',
'asc' -> 'text/plain',
'txt' -> 'text/plain',
'rtx' -> 'text/richtext',
'rtf' -> 'text/rtf',
'sgml' -> 'text/sgml',
'sgm' -> 'text/sgml',
'tsv' -> 'text/tab-separated-values',
'wml' -> 'text/vnd.wap.wml',
'wmls' -> 'text/vnd.wap.wmlscript',
'etx' -> 'text/x-setext',
'xsl' -> 'text/xml',
'xml' -> 'text/xml',
'mpeg' -> 'video/mpeg',
'mpg' -> 'video/mpeg',
'mpe' -> 'video/mpeg',
'qt' -> 'video/quicktime',
'mov' -> 'video/quicktime',
'mxu' -> 'video/vnd.mpegurl',
'avi' -> 'video/x-msvideo',
'movie' -> 'video/x-sgi-movie',
'ice' -> 'x-conference/x-cooltalk'

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved