Hi,大家好,我是编程小6,很荣幸遇见你,我把这些年在开发过程中遇到的问题或想法写出来,今天说一说PHP常用header头大全,希望能够帮助你!!!。
在日常的php的开发中,我们常常需要使用到header函数头来进行做标记。
这里好奇心就带大家一起列出我们常用的header头,供大家参考。
如果你对http状态码比较感兴趣,可以参考我之前的文章:
HTTP状态码超详细说明
常见HTTP状态码汇总说明
200 正常访问
header('HTTP/1.1 200 OK');
301 设置地址被永久的重定向,进行相应跳转
header('HTTP/1.1 301 Moved Permanently');
304 告诉浏览器文档内容没有发生改变
header('HTTP/1.1 304 Not Modified');
403 设置当前页面禁止访问
header('HTTP/1.1 403 Forbidden');
404 通知浏览器 页面不存在
header('HTTP/1.1 404 Not Found');
500 服务器错误
header('HTTP/1.1 500 Internal Server Error');
跳转到一个新的地址,如头条的网站
header('Location: http://www.toutiao.com/');
延迟转向 也就是隔几秒跳转,也常用于页面刷新
header('Refresh: 10; url=http://www.toutiao.com/');
修改 X-Powered-By信息(这个一般是Apache/Nginx等自己相应返回的)
header('X-Powered-By: PHP/8.0.0');
指定文档语言
header('Content-language: en');
设置内容长度
header('Content-Length: 5566');
通知浏览器最后一次修改时间
header('Last-Modified: '.gmdate('D, d M Y H:i:s', $time).' GMT');
设置此页面的过期时间(用格林威治时间表示),只要是已经过去的日期即可。
header("Expires: Mon, 12 Jul 2020 01:03:04 GMT");
设置此页面的最后更新日期(用格林威治时间表示)为当天,可以强制浏览器获取最新内容
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
告诉客户端浏览器不使用缓存,适用于HTTP 1.1 协议
header("Cache-Control: no-cache, must-revalidate");
告诉客户端浏览器不使用缓存,兼容HTTP 1.0 协议
header("Pragma: no-cache");
HTTP缓存我之前也有详细讲过,可以参考:一文了解HTTP缓存
设置网页编码
header('Content-Type: text/html; charset=utf-8');
设置纯文本格式
header('Content-Type: text/plain');
其他常见内容类型
// jpg jpeg文件
header('Content-Type: image/jpeg');
// zip压缩文件
header('Content-Type: application/zip');
// PDF文件
header('Content-Type: application/pdf');
// 音频文件
header('Content-Type: audio/mpeg');
//css文件
header('Content-type: text/css');
//js文件
header('Content-type: text/javascript');
//json
header('Content-type: application/json');
//pdf
header('Content-type: application/pdf');
//xml格式文件
header('Content-type: text/xml');
//Flash动画
header('Content-Type: application/x-shockw**e-flash');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename="haoqixin.zip"'); // 这里以haoqixin.zip为演示
header('Content-Transfer-Encoding: binary');
readfile('haoqixin.zip');
header('Cache-Control: no-cache, no-store, max-age=0, must-revalidate');
header('Expires: Mon, 16 Jul 2021 09:30:00 GMT');
header('HTTP/1.1 401 Unauthorized');
header('WWW-Authenticate: Basic realm="Top Secret"');
header('Content-Disposition: attachment; filename=toutiao.xlsx');
header('Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet');
header('Content-Length: '.filesize('./haoqixin.xls'));
header('Content-Transfer-Encoding: binary');
header('Cache-Control: must-revalidate');
header('Pragma: public');
readfile('./haoqixin.xls');
好了,在PHP中我们常用的Header头基本就这些了,希望对你有帮助。
今天的分享到此就结束了,感谢您的阅读,如果确实帮到您,您可以动动手指转发给其他人。
下一篇