Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In a blog post I use the following PHP to set the content-type of a response:

header('content-type: application/json; charset=utf-8');

I just got a comment on that post saying that content-type needs to be capitalized, Content-type. Is this correct? It seems to work for me with all lower-case, and I assumed the HTTP headers were case-insensitive. Or does it just work because browsers are nice?

share|improve this question

2 Answers

up vote 107 down vote accepted

From RFC 2616, "Hypertext Transfer Protocol -- HTTP/1.1", ยง4.2, "Message Headers":

Each header field consists of a name followed by a colon (":") and the field value. Field names are case-insensitive.

share|improve this answer
Great, correct and to the point answer. Thanks! – Svish Mar 10 '11 at 11:32
How did you get a link to that page? I mean could you teach us what are the steps you take to procure that link? It seems impossible that someone had memorized RFC 2616 and could simply look it up in google. – Pacerier Oct 2 '11 at 20:15
@Pacerier: Well, RFC 2616 covers HTTP 1.1 so I figured it had to be somewhere in there... – Ignacio Vazquez-Abrams Oct 2 '11 at 20:51
1  
@Pacerier: After enough times having to deal with it on this site, yes. – Ignacio Vazquez-Abrams Oct 2 '11 at 23:15
11  
@Pacerier: It's also the very first Google result for http spec, so it's not exactly difficult to find. Learn to Google! – Lightness Races in Orbit Oct 3 '11 at 9:18
show 2 more comments

HTTP header names are case-insensitive, according to RFC 2616:

4.2:

Each header field consists of a name followed by a colon (":") and the field value. Field names are case-insensitive.

(Field values may or may not be case-sensitive.)

If you trust the major browsers to abide by this, you're all set.


BTW, unlike most of HTTP, methods (verbs) are case sensitive:

5.1.1 Method

The Method token indicates the method to be performed on the
resource identified by the Request-URI. The method is case-sensitive.

   Method         = "OPTIONS"                ; Section 9.2
                  | "GET"                    ; Section 9.3
                  | "HEAD"                   ; Section 9.4
                  | "POST"                   ; Section 9.5
                  | "PUT"                    ; Section 9.6
                  | "DELETE"                 ; Section 9.7
                  | "TRACE"                  ; Section 9.8
                  | "CONNECT"                ; Section 9.9
                  | extension-method
   extension-method = token
share|improve this answer
HTTP verbs (== methods) are NOT case-insensitive. – Julian Reschke Mar 10 '11 at 16:02
@Julian: You're right. 5.1.1 says "The method is case-sensitive." Editing, thanks. – Lightness Races in Orbit Mar 10 '11 at 16:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.