> 백엔드 개발 > PHP 튜토리얼 > 다양한 HTTP 헤더를 설정하기 위해 헤더 기능을 사용하는 PHP의 예

다양한 HTTP 헤더를 설정하기 위해 헤더 기능을 사용하는 PHP의 예

WBOY
풀어 주다: 2016-07-25 09:04:39
원래의
1006명이 탐색했습니다.
  1. /**
  2. desc:header函数设置各种HTTP头
  3. link:bbs.it-home.org
  4. date:2013/2/24
  5. */
  6. //定义编码
  7. header( 'Content-Type:text/html;charset=utf-8 ');
  8. //Atom
  9. header('Content-type: application/atom xml');
  10. //CSS
  11. header('Content-type: text/css');
  12. //Javascript
  13. header('Content-type: text/javascript');
  14. //JPEG Image
  15. header('Content-type: image/jpeg');
  16. //JSON
  17. header('Content-type: application/json');
  18. //PDF
  19. header('Content-type: application/pdf');
  20. //RSS
  21. header('Content-Type: application/rss xml; charset=ISO-8859-1');
  22. //Text (Plain)
  23. header('Content-type: text/plain');
  24. //XML
  25. header('Content-type: text/xml');
  26. // ok
  27. header('HTTP/1.1 200 OK');
  28. //设置一个404头:
  29. header('HTTP/1.1 404 Not Found');
  30. //设置地址被永久的重定向
  31. header('HTTP/1.1 301 Moved Permanently');
  32. //转到一个新地址
  33. header('Location: http://bbs.it-home.org/');
  34. //文件延迟转向:
  35. header('Refresh: 10; url=http://bbs.it-home.org/');
  36. print 'You will be redirected in 10 seconds';
  37. //当然,也可以使用html语法实现
  38. //
  39. header('Content-Transfer-Encoding: binary');
  40. // load the file to send:
  41. readfile('example.zip');
  42. // 对当前文档禁用缓存
  43. header('Cache-Control: no-cache, no-store, max-age=0, must-revalidate');
  44. header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); // Date in the past
  45. header('Pragma: no-cache');
  46. //设置内容类型:
  47. header('Content-Type: text/html; charset=iso-8859-1');
  48. header('Content-Type: text/html; charset=utf-8');
  49. header('Content-Type: text/plain'); //纯文本格式
  50. header('Content-Type: image/jpeg'); //JPG***
  51. header('Content-Type: application/zip'); // ZIP文件
  52. header('Content-Type: application/pdf'); // PDF文件
  53. header('Content-Type: audio/mpeg'); // 音频文件
  54. header('Content-Type: application/x-shockw**e-flash'); //Flash动画
  55. //显示登陆对话框
  56. header('HTTP/1.1 401 Unauthorized');
  57. header('WWW-Authenticate: Basic realm="Top Secret"');
  58. print 'Text that will be displayed if the user hits cancel or ';
  59. print 'enters wrong login data';
  60. ?>
复制代码


원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿