tags:

views:

1147

answers:

2

How should I read any header in PHP?

For example the custom header: X-Requested-With.

+7  A: 
$_SERVER['HTTP_X_REQUESTED_WITH']
Quassnoi
+4  A: 

Google hit #1

http://www.php.net/apache_request_headers

<?php
$headers = apache_request_headers();

foreach ($headers as $header => $value) {
    echo "$header: $value <br />\n";
}
?>

See Also

apache_response_headers() - Fetch all HTTP response headers

Jacco
I assume this is only when using the Apache server... might need to let the OP know that :)
alex
I was hoping he would do some reading for himself.
Jacco