Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm implementing a REST service in PHP. This service should be able to support multiple input and output formats (JSON, XML). For that reason I want to check the request headers "Accept" and "Content-Type" for the type of content sent and requested by the client.

Accessing the "Accept" header is a simple as using $_SERVER['HTTP_ACCEPT']. But accessing the "Content-Type" header seems to be a difficult task. I searched the PHP documentation and the web, but the only solution offered was the use of the PHP function apache_request_headers() which is only supported when PHP is installed as an Apache module, which is not true in my case.

So my question now: How can I access the header "Content-Type" of a request?

share|improve this question
Remember that $_SERVER["CONTENT_TYPE"] is not always available. – German Dec 12 '12 at 19:42

4 Answers

up vote 14 down vote accepted

Normal (GET) requests do not have a Content-Type header. For POST requests it would appear as $_SERVER["HTTP_CONTENT_TYPE"] with a value of multipart/form-data or application/x-www-form-urlencoded. But if you receive a POST request with a JSON body, it would be noted there.

Oh well, actually wrong. The header should be just CONTENT_TYPE as per the CGI/1.1 specification: http://www.ietf.org/rfc/rfc3875
It cannot possibly be absent, because PHP in both mod_php and CGI mode would be unable to parse the POST request body then.

share|improve this answer
   
When I try to access $_SERVER["HTTP_CONTENT_TYPE"] I recieve the following error: "Undefined index: HTTP_CONTENT_TYPE in ..." – ZombieHunter Apr 1 '11 at 23:24
Then it's not defined. Was it a POST request? – mario Apr 1 '11 at 23:25
@mario: I tried a PUT request – ZombieHunter Apr 1 '11 at 23:34
4  
Please try again. I looked it up once more, it should be $_SERVER["CONTENT_TYPE"] without HTTP_ prefix, as it is a core CGI environment variable. Else your server does something weird, then try Neils idea. – mario Apr 1 '11 at 23:35
1  
@jayarjo That was a typo. Some fringe webservers may mirror it with HTTP_ prefix, but according to the specification it should always be just CONTENT_TYPE. – mario Jan 30 at 20:10
show 4 more comments

You'll need to manually instruct Apache to supply the Content-Type header (plus any other headers you want).

Pop something like this in your .htaccess file or virtual host:

RewriteEngine on
RewriteRule .* - [E=HTTP_CONTENT_TYPE:%{HTTP:Content-Type},L]

And voila, you just synthesised your very own $_SERVER['HTTP_CONTENT_TYPE']!

Edit:

I assume you're running PHP as CGI with Apache so you can use verbs other than GET and POST, as most rest services do. If you're using another web server or largely unheard-of PHP SAPI, you'll need to use a similar trick; PHP as CGI simply doesn't have access to request headers outside the contents of $_SERVER, no matter what other mechanisms you use - $_ENV, apache_request_headers(), even the classes in the php_http extension will all be empty.

share|improve this answer
Thanks, that did it! I'm impressed :-) – ZombieHunter Apr 1 '11 at 23:34
Age-old problem with REST services on PHP/Apache rigs. I make a point of distributing the vhost with the application because they usually get pretty hefty. Glad it worked :) – Neil E. Pearson Apr 1 '11 at 23:44

What about get_headers()?

http://php.net/manual/en/function.get-headers.php

share|improve this answer
1  
get_headers() sends an independent request to the URI passed, so it acts as a client. What I need is the headers from the already performed request to my webservice. – ZombieHunter Apr 1 '11 at 23:17

You can also get the content type (like "text/html") with this :

echo split(',', getallheaders()['Accept'])[0];

or

echo get_headers('http://127.0.0.1', 1)["Content-Type"]
share|improve this answer
1  
Thanks for the info. From the documentation: "These functions are only available when running PHP as an Apache module.". As far as I know PHP is often run using FastCGI. This is exactly the case in my scenario. I personally prefer $_SERVER["CONTENT_TYPE"], it looks much cleaner. – ZombieHunter Dec 6 '12 at 10: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.