vote up 1 vote down star
1

I was wondering if there was a way to get at the raw HTTP request data in PHP running on apache that doesn't involve using any additional extensions. I've seen the HTTP functions in the manual, but I don't have the option of installing an extension in my environment.

While I can access the information from $_SERVER, I would like to see the raw request exactly as it was sent to the server. PHP munges the header names to suit its own array key style, for eg. Some-Test-Header becomes HTTP_X_SOME_TEST_HEADER. This is not what I need.

flag

67% accept rate

2 Answers

vote up 3 vote down check

do you mean the information contained in $_SERVER?

print_r($_SERVER);

edit:

ah would this do then?

foreach(getallheaders() as $key=>$value)  {
    print $key.': '.$value."<br />";
}
link|flag
Yes, but i want the raw request before it gets parsed into $_SERVER by PHP – Shabbyrobe Oct 3 '08 at 3:56
vote up 0 vote down

Use the following php wrapper:

$raw_post = file_get_contents("php://input");

link|flag
I don't think that gets the http headers though. – MattSmith Oct 3 '08 at 4:51

Your Answer

Get an OpenID
or

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