博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PHP 常见header 状态
阅读量:6556 次
发布时间:2019-06-24

本文共 1237 字,大约阅读时间需要 4 分钟。

转载:http://blog.csdn.net/mothz/article/details/6029810

 

相同)header('Refresh: 3; url=http://www.maiyoule.com/');echo '10后跳转到http://www.maiyoule.com'; // 重写 X-Powered-By 值header('X-Powered-By: PHP/5.3.0');header('X-Powered-By: Brain/0.6b'); //设置上下文语言header('Content-language: en'); // 设置页面最后修改时间(多用于防缓存)$time = time() - 60; //建议使用filetime函数来设置页面缓存时间header('Last-Modified: '.gmdate('D, d M Y H:i:s', $time).' GMT');// 设置内容长度header('Content-Length: 39344'); // 设置头文件类型,可以用于流文件或者文件下载header('Content-Type: application/octet-stream');header('Content-Disposition: attachment; filename="example.zip"'); header('Content-Transfer-Encoding: binary');readfile('example.zip');//读取文件到客户端 //禁用页面缓存header('Cache-Control: no-cache, no-store, max-age=0, must-revalidate');header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); header('Pragma: no-cache'); //设置页面头信息header('Content-Type: text/html; charset=iso-8859-1');header('Content-Type: text/html; charset=utf-8');header('Content-Type: text/plain'); header('Content-Type: image/jpeg'); header('Content-Type: application/zip'); header('Content-Type: application/pdf'); header('Content-Type: audio/mpeg');header('Content-Type: application/x-shockwave-flash'); //.... 至于Content-Type 的值 可以去查查 w3c 的文档库,那里很丰富?>

 

你可能感兴趣的文章
json_encode后的中文不编码成unicode
查看>>
iOS 导航栏title显示右偏移
查看>>
字符串处理 2015百度之星资格赛 1002 列变位法解密
查看>>
修改纵断面图标注栏
查看>>
Flex创建带有空间信息的椭圆(Polygon)
查看>>
【转】参照protobuf,将json数据转换成二进制在网络中传输。
查看>>
wpf 输入停止一段时间后。执行事件
查看>>
享元模式
查看>>
Python中的str与bytes之间的转换的三种方法
查看>>
java异常常见面试问题
查看>>
课后作业5
查看>>
Centos7.1环境下搭建BugFree
查看>>
共用y轴的双图形绘制
查看>>
(错误) Eclipse使用Maven创建Web时错误
查看>>
第31讲 | 数字货币钱包服务
查看>>
P2073 送花
查看>>
iOS端项目注释规范附统一代码块
查看>>
c语言编程的限制,关于NOI系列赛编程语言使用限制的规定
查看>>
32个c语言关键字发音,C语言的32个关键字(读音、用法、注释)转来的,给刚接触C的...
查看>>
为煮酒新书《构建高可用Linux服务器》作序!
查看>>