How should I read any header in PHP?
For example the custom header: X-Requested-With
.
How should I read any header in PHP?
For example the custom header: X-Requested-With
.
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