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?

link|improve this question

feedback

2 Answers

up vote 44 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.

link|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
@IgnacioVazquez-Abrams Ic, so you've memorized the number RFC 2616 for HTTP 1.1 ? – Pacerier Oct 2 '11 at 23:08
4  
@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 3 more comments
feedback

HTTP headers 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.

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
link|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
feedback

Your Answer

 
or
required, but never shown

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