分享php开发中常用的header头

俗话说工欲善其事,必先利其器。在常见的PHP开发中,我们经常会使用HEADER输出一些头内容来帮助浏览器快速地识别我们的行为,如404、301等,同时在下载等浏览器行为时,一个好的HEADER头能解决很多问题。

这里分享一些互联网上常用的HEADER头供开发时参考:

<?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: //www.yoursafe.cn/'); //跳转到一个新的地址
header('Refresh: 10; url=//www.yoursafe.cn/'); //延迟转向 也就是隔几秒跳转
header('X-Powered-By: PHP'); //修改 X-Powered-By信息
header('Content-language: zh-cn'); //文档语言
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-shockwave-flash'); //Flash动画

//声明一个下载的文件
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename="test.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');

//HTTP基础验证对话框
header('HTTP/1.1 401 Unauthorized');
header('WWW-Authenticate: Basic realm="Http Base  Auth Test"');

//下载xls文件
header('Content-Disposition: attachment; filename=test.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');

?>
相关推荐:
首先我们来简单地普及下GUID, 即Globally Unique Identifier(全球唯一标识符) 也称作 UUID(Universally Unique IDentifier) 。 GUID是一个通过特定算法产生的二进制长度为128位的数字标识符,用于指示产 …
背景信息: 2019年4月17日,监测到Spring官方发布安全公告,披露Spring Cloud Config服务器存在远程任意文件读取漏洞(CVE-2019-3799)。黑客可通过漏洞直接遍历服务器任意磁盘文件,风险较大。 漏洞描述: S …
centos的软件安装大致可以分为两种类型: [centos]rpm文件安装,使用rpm指令  类似[ubuntu]deb文件安装,使用dpkg指令 [centos]yum安装   类似[ubuntu]apt-get安装 rpm命令 (一)查询系统装 …
MySQL5.7 中 mysql 库中的 user 表中取消了 password 字段,代之的是将加密后的密码存放到 authentication_string 字段中。 所以千万别随便参考其它非专业的文章来进行操作。 mysql> mysql -u用户名 -p …
在中文Windows系统中,如果一个文本文件是UTF-8编码的,那么在命令行窗口中不能正确显示内容。在默认情况下,命令行窗口中使用的代码页是中文或者美国的,即编码是中文字符集或者西文字符集。 如果想正确显 …
拿起手机扫一扫即可带走我!