欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

PHP 常用的header头部定义

程序员文章站 2022-05-01 12:57:29
...
  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'); //告诉浏览器文档内容没有发生改变
  11. ###内容类型###
  12. header('Content-Type: text/html; charset=utf-8'); //网页编码
  13. header('Content-Type: text/plain'); //纯文本格式
  14. header('Content-Type: image/jpeg'); //JPG、JPEG
  15. header('Content-Type: application/zip'); // ZIP文件
  16. header('Content-Type: application/pdf'); // PDF文件
  17. header('Content-Type: audio/mpeg'); // 音频文件
  18. header('Content-type: text/css'); //css文件
  19. header('Content-type: text/javascript'); //js文件
  20. header('Content-type: application/json'); //json
  21. header('Content-type: application/pdf'); //pdf
  22. header('Content-type: text/xml'); //xml
  23. header('Content-Type: application/x-shockw**e-flash'); //Flash动画
  24. ######
  25. ###声明一个下载的文件###
  26. header('Content-Type: application/octet-stream');
  27. header('Content-Disposition: attachment; filename="ITblog.zip"');
  28. header('Content-Transfer-Encoding: binary');
  29. readfile('test.zip');
  30. ######
  31. ###对当前文档禁用缓存###
  32. header('Cache-Control: no-cache, no-store, max-age=0, must-revalidate');
  33. header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
  34. ######
  35. ###显示一个需要验证的登陆对话框###
  36. header('HTTP/1.1 401 Unauthorized');
  37. header('WWW-Authenticate: Basic realm="Top Secret"');
  38. ######
  39. ###声明一个需要下载的xls文件###
  40. header('Content-Disposition: attachment; filename=ithhc.xlsx');
  41. header('Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet');
  42. header('Content-Length: '.filesize('./test.xls'));
  43. header('Content-Transfer-Encoding: binary');
  44. header('Cache-Control: must-revalidate');
  45. header('Pragma: public');
  46. readfile('./test.xls');
  47. ######
  48. ?>
复制代码

PHP, header