php header函数的常用http头设置

这篇文章主要介绍了php header函数的常用http头设置,本文直接给出代码实例,代码中包含详细注释,需要的朋友可以参考下。

  1. //ok
  2. header(‘HTTP/1.1 200 OK');
  3. //设置一个404头:
  4. header(‘HTTP/1.1 404 Not Found');
  5. //设置地址被永久的重定向
  6. header(‘HTTP/1.1 301 Moved Permanently');
  7. //转到一个新地址
  8. header(‘Location: http://www.example.org/‘);
  9. //文件延迟转向:
  10. header(‘Refresh: 10; url=http://www.example.org/‘);
  11. print ‘You will be redirected in 10 seconds';
  12. //当然,也可以使用html语法实现
  13. // <meta http-equiv=”refresh” content=”10;http://www.example.org/ />
  14. // override X-Powered-By: PHP:
  15. header(‘X-Powered-By: PHP/4.4.0′);
  16. header(‘X-Powered-By: Brain/0.6b');
  17. //文档语言
  18. header(‘Content-language: en');
  19. //告诉浏览器最后一次修改时间
  20. $time = time() – 60; // or filemtime($fn), etc
  21. header(‘Last-Modified: ‘.gmdate(‘D, d M Y H:i:s', $time).' GMT');
  22. //告诉浏览器文档内容没有发生改变
  23. header(‘HTTP/1.1 304 Not Modified');
  24. //设置内容长度
  25. header(‘Content-Length: 1234′);
  26. //设置为一个下载类型
  27. header(‘Content-Type: application/octet-stream');
  28. header(‘Content-Disposition: attachment; filename=”example.zip”‘);
  29. header(‘Content-Transfer-Encoding: binary');
  30. // load the file to send:
  31. readfile(‘example.zip');
  32. // 对当前文档禁用缓存
  33. header(‘Cache-Control: no-cache, no-store, max-age=0, must-revalidate');
  34. header(‘Expires: Mon, 26 Jul 1997 05:00:00 GMT'); // Date in the past
  35. header(‘Pragma: no-cache');
  36. //设置内容类型:
  37. header(‘Content-Type: text/html; charset=iso-8859-1′);
  38. header(‘Content-Type: text/html; charset=utf-8′);
  39. header(‘Content-Type: text/plain'); //纯文本格式
  40. header(‘Content-Type: image/jpeg'); //JPG***
  41. header(‘Content-Type: application/zip'); // ZIP文件
  42. header(‘Content-Type: application/pdf'); // PDF文件
  43. header(‘Content-Type: audio/mpeg'); // 音频文件
  44. header(‘Content-Type: application/x-shockw**e-flash'); //Flash动画
  45. //显示登陆对话框
  46. header(‘HTTP/1.1 401 Unauthorized');
  47. header(‘WWW-Authenticate: Basic realm=”Top Secret”‘);
  48. print ‘Text that will be displayed if the user hits cancel or ‘;
  49. print ‘enters wrong login data';