PHP.nl

apache_request_headers

apache_request_headers

Fetch all HTTP request headers

array **apache_request_headers**

Fetches all HTTP request headers from the current request. Works in the Apache, FastCGI, CLI, and FPM webservers.

An associative array of all the HTTP headers in the current request.

Voorbeeld: example

<?php
$headers = apache_request_headers();

foreach ($headers as $header => $value) {
    echo "$header: $value <br />\n";
}
?>
Accept: */*
Accept-Language: en-us
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/4.0
Host: www.example.com
Connection: Keep-Alive

Opmerking: > You can also get at the value of the common variables by reading them from the environment, which works whether or not you are using PHP as an module. Use to see a list of all of the available . phpinfoenvironment variables

apache_response_headers