mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-24 04:48:55 +00:00

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@78496 c90b9560-bf6c-de11-be94-00142212c4b1
75 lines
2 KiB
XML
75 lines
2 KiB
XML
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
<!-- $Revision: 1.2 $ -->
|
|
<!-- splitted from ./en/functions/apache.xml, last change in rev 1.2 -->
|
|
<refentry id="function.getallheaders">
|
|
<refnamediv>
|
|
<refname>getallheaders</refname>
|
|
<refpurpose>Fetch all HTTP request headers</refpurpose>
|
|
</refnamediv>
|
|
<refsect1>
|
|
<title>Description</title>
|
|
<methodsynopsis>
|
|
<type>array</type><methodname>getallheaders</methodname>
|
|
<void/>
|
|
</methodsynopsis>
|
|
<para>
|
|
This function returns an associative array of all the HTTP
|
|
headers in the current request.
|
|
</para>
|
|
<para>
|
|
<note>
|
|
<para>
|
|
You can also get at the value of the common CGI variables by
|
|
reading them from the environment, which works whether or not
|
|
you are using PHP as an Apache module. Use
|
|
<function>phpinfo</function> to see a list of all of the
|
|
environment variables defined this way.
|
|
</para>
|
|
</note>
|
|
</para>
|
|
<para>
|
|
<example>
|
|
<title><function>getallheaders</function> Example</title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
$headers = getallheaders();
|
|
while (list ($header, $value) = each ($headers)) {
|
|
echo "$header: $value<br />\n";
|
|
}
|
|
]]>
|
|
</programlisting>
|
|
</example>
|
|
</para>
|
|
<para>
|
|
This example will display all the request headers for the current
|
|
request.
|
|
<note>
|
|
<simpara>
|
|
<function>getallheaders</function> is currently only supported
|
|
when PHP runs as an <productname>Apache</productname> module.
|
|
</simpara>
|
|
</note>
|
|
</para>
|
|
</refsect1>
|
|
</refentry>
|
|
|
|
<!-- Keep this comment at the end of the file
|
|
Local variables:
|
|
mode: sgml
|
|
sgml-omittag:t
|
|
sgml-shorttag:t
|
|
sgml-minimize-attributes:nil
|
|
sgml-always-quote-attributes:t
|
|
sgml-indent-step:1
|
|
sgml-indent-data:t
|
|
indent-tabs-mode:nil
|
|
sgml-parent-document:nil
|
|
sgml-default-dtd-file:"../../../../manual.ced"
|
|
sgml-exposed-tags:nil
|
|
sgml-local-catalogs:nil
|
|
sgml-local-ecat-files:nil
|
|
End:
|
|
vim600: syn=xml fen fdm=syntax fdl=2 si
|
|
vim: et tw=78 syn=sgml
|
|
vi: ts=1 sw=1
|
|
-->
|