当前位置:首页 > PHP教程 > php应用 > 列表

php中header设置常见文件类型的content-type

发布:smiling 来源: PHP粉丝网  添加日期:2021-06-03 11:35:09 浏览: 评论:0 

这篇文章主要介绍了php中header设置常见文件类型的content-type的相关资料,需要的朋友可以参考下,在PHP中可以通过header函数来发送头信息,还可以设置文件的content-type,下面整理了一些常见文件类型对于的content-type值。

  1. //date 2015-06-22 
  2. //定义编码 
  3. header( 'Content-Type:text/html;charset=utf-8 '); 
  4.    
  5. //Atom 
  6. header('Content-type: application/atom+xml'); 
  7.    
  8. //CSS 
  9. header('Content-type: text/css'); 
  10.    
  11. //Javascript 
  12. header('Content-type: text/javascript'); 
  13.    
  14. //JPEG Image 
  15. header('Content-type: image/jpeg'); 
  16.    
  17. //JSON 
  18. header('Content-type: application/json'); 
  19.    
  20. //PDF 
  21. header('Content-type: application/pdf'); 
  22.    
  23. //RSS 
  24. header('Content-Type: application/rss+xml; charset=ISO-8859-1'); 
  25.    
  26. //Text (Plain) 
  27. header('Content-type: text/plain'); 
  28.    
  29. //XML 
  30. header('Content-type: text/xml'); 
  31.    
  32. // ok 
  33. header('HTTP/1.1 200 OK'); 
  34.    
  35. //设置一个404头: 
  36. header('HTTP/1.1 404 Not Found'); 
  37.    
  38. //设置地址被永久的重定向 
  39. header('HTTP/1.1 301 Moved Permanently'); 
  40.    
  41. //转到一个新地址 
  42. header('Location: http://www.example.org/');  
  43. //文件延迟转向: 
  44. header('Refresh: 10; url=http://www.example.org/'); 
  45. print 'You will be redirected in 10 seconds'
  46.    
  47. //当然,也可以使用html语法实现 
  48. // <meta http-equiv="refresh" content="10;http://www.example.org/ /> 
  49.    
  50. // override X-Powered-By: PHP: 
  51. header('X-Powered-By: PHP/4.4.0'); 
  52. header('X-Powered-By: Brain/0.6b'); 
  53.    
  54. //文档语言 
  55. header('Content-language: en'); 
  56.    
  57. //告诉浏览器最后一次修改时间 
  58. $time = time() - 60; // or filemtime($fn), etc 
  59. header('Last-Modified: '.gmdate('D, d M Y H:i:s'$time).' GMT'); 
  60.    
  61. //告诉浏览器文档内容没有发生改变 
  62. header('HTTP/1.1 304 Not Modified'); 
  63.    
  64. //设置内容长度 
  65. header('Content-Length: 1234'); 
  66.    
  67. //设置为一个下载类型 
  68. header('Content-Type: application/octet-stream'); 
  69. header('Content-Disposition: attachment; filename="example.zip"'); 
  70. header('Content-Transfer-Encoding: binary'); 
  71. // load the file to send: 
  72. readfile('example.zip'); 
  73.    
  74. // 对当前文档禁用缓存 
  75. header('Cache-Control: no-cache, no-store, max-age=0, must-revalidate'); 
  76. header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); // Date in the past 
  77. header('Pragma: no-cache'); 
  78.    
  79. //设置内容类型: 
  80. header('Content-Type: text/html; charset=iso-8859-1'); 
  81. header('Content-Type: text/html; charset=utf-8'); 
  82. header('Content-Type: text/plain'); //纯文本格式 
  83. header('Content-Type: image/jpeg'); //JPG*** 
  84. header('Content-Type: application/zip'); // ZIP文件 
  85. header('Content-Type: application/pdf'); // PDF文件 
  86. header('Content-Type: audio/mpeg'); // 音频文件 
  87. header('Content-Type: application/x-shockw**e-flash'); //Flash动画 
  88.    
  89. //显示登陆对话框 
  90. header('HTTP/1.1 401 Unauthorized'); 
  91. header('WWW-Authenticate: Basic realm="Top Secret"'); 
  92. print 'Text that will be displayed if the user hits cancel or '
  93. print 'enters wrong login data';

Tags: header content-type

分享到: