http状态

  1. header('HTTP/1.1 200 OK'); // ok 正常访问
  2. header('HTTP/1.1 404 Not Found'); //通知浏览器 页面不存在
  3. header('HTTP/1.1 301 Moved Permanently'); //设置地址被永久的重定向 301
  4. header('Location: http://www.ithhc.cn/'); //跳转到一个新的地址
  5. header('Refresh: 10; url=http://www.ithhc.cn/'); //延迟转向 也就是隔几秒跳转
  6. header('X-Powered-By: PHP/6.0.0'); //修改 X-Powered-By信息
  7. header('Content-language: en'); //文档语言
  8. header('Content-Length: 1234'); //设置内容长度
  9. header('Last-Modified: '.gmdate('D, d M Y H:i:s', $time).' GMT'); //告诉浏览器最后一次修改时间
  10. header('HTTP/1.1 304 Not Modified'); //告诉浏览器文档内容没有发生改变

常用的 Content-Type

  1. header('Content-Type: text/html; charset=utf-8'); //网页编码
  2. header('Content-Type: text/plain'); //纯文本格式
  3. header('Content-Type: image/jpeg'); //JPG、JPEG
  4. header('Content-Type: application/zip'); // ZIP文件
  5. header('Content-Type: application/pdf'); // PDF文件
  6. header('Content-Type: audio/mpeg'); // 音频文件
  7. header('Content-type: text/css'); //css文件
  8. header('Content-type: text/javascript'); //js文件
  9. header('Content-type: application/json'); //json
  10. header('Content-type: application/pdf'); //pdf
  11. header('Content-type: text/xml'); //xml
  12. header('Content-Type: application/x-shockw**e-flash'); //Flash动画

下载 zip压缩文件

  1. header('Content-Type: application/octet-stream');
  2. header('Content-Disposition: attachment; filename="ITblog.zip"');
  3. header('Content-Transfer-Encoding: binary');
  4. readfile('test.zip');

下载 xls文件

  1. header('Content-Disposition: attachment; filename=ithhc.xlsx');
  2. 服务端设置 header
  3. setHeader("Content-Disposition","attachment;filename="+URLEncoder.encode(fileName, "UTF-8"));
  4. header('Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet');
  5. header('Content-Length: '.filesize('./test.xls'));
  6. header('Content-Transfer-Encoding: binary');
  7. header('Cache-Control: must-revalidate');
  8. header('Pragma: public');
  9. readfile('./test.xls');

需要验证的登陆对话框

  1. header('HTTP/1.1 401 Unauthorized');
  2. header('WWW-Authenticate: Basic realm="Top Secret"');

对当前文档禁用缓存

  1. header('Cache-Control: no-cache, no-store, max-age=0, must-revalidate');
  2. header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');