Discuz教程网

PHP设置HTTP状态码

[复制链接]
authicon dly 发表于 2012-10-7 17:36:51 | 显示全部楼层 |阅读模式
  1. /**
  2. * 设置HTTP状态码
  3. *
  4. */
  5. function httpstatus($code){
  6. $http = array (
  7. 100 => "HTTP/1.1 100 Continue",
  8. 101 => "HTTP/1.1 101 Switching Protocols",
  9. 200 => "HTTP/1.1 200 OK",
  10. 201 => "HTTP/1.1 201 Created",
  11. 202 => "HTTP/1.1 202 Accepted",
  12. 203 => "HTTP/1.1 203 Non-Authoritative Information",
  13. 204 => "HTTP/1.1 204 No Content",
  14. 205 => "HTTP/1.1 205 Reset Content",
  15. 206 => "HTTP/1.1 206 Partial Content",
  16. 300 => "HTTP/1.1 300 Multiple Choices",
  17. 301 => "HTTP/1.1 301 Moved Permanently",
  18. 302 => "HTTP/1.1 302 Found",
  19. 303 => "HTTP/1.1 303 See Other",
  20. 304 => "HTTP/1.1 304 Not Modified",
  21. 305 => "HTTP/1.1 305 Use Proxy",
  22. 307 => "HTTP/1.1 307 Temporary Redirect",
  23. 400 => "HTTP/1.1 400 Bad Request",
  24. 401 => "HTTP/1.1 401 Unauthorized",
  25. 402 => "HTTP/1.1 402 Payment Required",
  26. 403 => "HTTP/1.1 403 Forbidden",
  27. 404 => "HTTP/1.1 404 Not Found",
  28. 405 => "HTTP/1.1 405 Method Not Allowed",
  29. 406 => "HTTP/1.1 406 Not Acceptable",
  30. 407 => "HTTP/1.1 407 Proxy Authentication Required",
  31. 408 => "HTTP/1.1 408 Request Time-out",
  32. 409 => "HTTP/1.1 409 Conflict",
  33. 410 => "HTTP/1.1 410 Gone",
  34. 411 => "HTTP/1.1 411 Length Required",
  35. 412 => "HTTP/1.1 412 Precondition Failed",
  36. 413 => "HTTP/1.1 413 Request Entity Too Large",
  37. 414 => "HTTP/1.1 414 Request-URI Too Large",
  38. 415 => "HTTP/1.1 415 Unsupported Media Type",
  39. 416 => "HTTP/1.1 416 Requested range not satisfiable",
  40. 417 => "HTTP/1.1 417 Expectation Failed",
  41. 500 => "HTTP/1.1 500 Internal Server Error",
  42. 501 => "HTTP/1.1 501 Not Implemented",
  43. 502 => "HTTP/1.1 502 Bad Gateway",
  44. 503 => "HTTP/1.1 503 Service Unavailable",
  45. 504 => "HTTP/1.1 504 Gateway Time-out"
  46. );
  47. header($http[$code]);
  48. }
复制代码

要注意,自定义404,内容一定要长于512个字节,否则会显示浏览器自己的404



上一篇:浅谈阿巴特
下一篇:Discuz 2.5F版更改板块图标教程及修改显示位置
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

1314学习网 ( 浙ICP备10214163号 )

GMT+8, 2025-5-2 09:39

Powered by Discuz! X3.4

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表