这篇文章次要给各人引见PHP header函数的几高文用,心愿可以对各人有所协助。
保举教程:PHP视频教程
先看看民间文档的界说
(PHP 4, PHP 5, PHP 7)
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函数的常见用途有如下几点:
一、重定向
header('Location: http://www.example.com/');
二、指定内容:
header('Content-type: application/pdf');
三、附件:
header('Content-type: application/pdf');
//指定内容为附件,指定下载显示的名字
header('Content-Disposition: attachment; filename="downloaded.pdf"');
//关上文件,并输入
readfile('original.pdf');
以上代码能够正在阅读器孕育发生文件对话框的成果
四、让用户猎取最新的材料以及数据而没有是缓存
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的作用的具体内容,更多请存眷资源魔其它相干文章!
标签: php php开发教程 php开发资料 php开发自学 header