在使用php语言开发时,都会见到语言标记,那php语言标记用的是什么呢?有这种“zh_CN”也有“header”。不同的标记内容代表不同信息。所以今天我们来细数一些php相关的语言标记。
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");
内容类型
设置网页编码
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"');
声明一个需要下载的xls文件
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语言标记用的是什么(php语言标记用的是什么符号)”的相关内容就是以上这些,想要了解更多关于php相关内容欢迎持续关注编程学习网
扫码二维码 获取免费视频学习资料
- 本文固定链接: http://phpxs.com/post/9052/
- 转载请注明:转载必须在正文中标注并保留原文链接
- 扫码: 扫上方二维码获取免费视频资料
查 看2022高级编程视频教程免费获取