PHP Doku:: Fetch all HTTP request headers - function.nsapi-request-headers.html

Verlauf / Chronik / History: (4) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzServerspezifische ErweiterungenNSAPINSAPI Funktionennsapi_request_headers

Ein Service von Reinhard Neidl - Webprogrammierung.

NSAPI Funktionen

<<NSAPI Funktionen

nsapi_response_headers>>

nsapi_request_headers

(PHP 4 >= 4.3.3, PHP 5)

nsapi_request_headersFetch all HTTP request headers

Beschreibung

array nsapi_request_headers ( void )

nsapi_request_headers() gets all the HTTP headers in the current request. This is only supported when PHP runs as a NSAPI module.

Hinweis:

Prior to PHP 4.3.3, getallheaders() was only available for the Apache servers. After PHP 4.3.3, getallheaders() is an alias for nsapi_request_headers() if you use the NSAPI module.

Hinweis:

You can also get at the value of the common CGI variables by reading them from the $_SERVER superglobal, which works whether or not you are using PHP as a NSAPI module.

Rückgabewerte

Returns an associative array with all the HTTP headers.

Beispiele

Beispiel #1 nsapi_request_headers() example

<?php
$headers 
nsapi_request_headers();

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


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)