(PHP 4, PHP 5)
getallheaders — Fetch all HTTP request headers
Fetches all HTTP headers from the current request.
This function is an alias for apache_request_headers(). Please read the apache_request_headers() documentation for more information on how this function works.
Тази функция се поддържа само, ако PHP е инсталирано като модул на Apache.
An associative array of all the HTTP headers in the current request, or FALSE on failure.
Версия | Описание |
---|---|
4.3.0 | Became an alias for apache_request_headers(). Essentially, it was renamed. This is because this function only works with Apache. |
Example #1 getallheaders() example
<?php
foreach (getallheaders() as $name => $value) {
echo "$name: $value\n";
}
?>
Забележка: От PHP 4.3.3 може да използвате тази функция с NSAPI сървърен модул в Netscape/iPlanet/SunONE уеб сървъри също.