2010-03-28 22:10:10 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2009-07-11 09:15:58 +00:00
|
|
|
<!-- $Revision$ -->
|
2007-06-20 22:25:43 +00:00
|
|
|
<refentry xml:id="function.get-headers" xmlns="http://docbook.org/ns/docbook">
|
2006-03-10 04:54:53 +00:00
|
|
|
<refnamediv>
|
|
|
|
<refname>get_headers</refname>
|
|
|
|
<refpurpose>Fetches all the headers sent by the server in response to a HTTP request</refpurpose>
|
|
|
|
</refnamediv>
|
2007-02-03 01:10:26 +00:00
|
|
|
|
2007-02-03 01:10:52 +00:00
|
|
|
<refsect1 role="description">
|
|
|
|
&reftitle.description;
|
2006-03-10 04:54:53 +00:00
|
|
|
<methodsynopsis>
|
|
|
|
<type>array</type><methodname>get_headers</methodname>
|
|
|
|
<methodparam><type>string</type><parameter>url</parameter></methodparam>
|
2009-01-16 16:14:26 +00:00
|
|
|
<methodparam choice="opt"><type>int</type><parameter>format</parameter><initializer>0</initializer></methodparam>
|
2018-01-31 09:07:01 +00:00
|
|
|
<methodparam choice="opt"><type>resource</type><parameter>context</parameter></methodparam>
|
2006-03-10 04:54:53 +00:00
|
|
|
</methodsynopsis>
|
|
|
|
<para>
|
|
|
|
<function>get_headers</function> returns an array with the headers sent
|
2007-02-03 01:10:52 +00:00
|
|
|
by the server in response to a HTTP request.
|
2006-03-10 04:54:53 +00:00
|
|
|
</para>
|
2007-02-03 01:10:52 +00:00
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
<refsect1 role="parameters">
|
|
|
|
&reftitle.parameters;
|
2006-03-10 04:54:53 +00:00
|
|
|
<para>
|
2007-02-03 01:10:52 +00:00
|
|
|
<variablelist>
|
|
|
|
<varlistentry>
|
|
|
|
<term><parameter>url</parameter></term>
|
|
|
|
<listitem>
|
|
|
|
<para>
|
|
|
|
The target URL.
|
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
<varlistentry>
|
|
|
|
<term><parameter>format</parameter></term>
|
|
|
|
<listitem>
|
|
|
|
<para>
|
2009-01-16 16:14:26 +00:00
|
|
|
If the optional <parameter>format</parameter> parameter is set to non-zero,
|
2007-02-03 01:10:52 +00:00
|
|
|
<function>get_headers</function> parses the response and sets the
|
|
|
|
array's keys.
|
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
</variablelist>
|
2006-03-10 04:54:53 +00:00
|
|
|
</para>
|
2007-02-03 01:10:52 +00:00
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
<refsect1 role="returnvalues">
|
|
|
|
&reftitle.returnvalues;
|
|
|
|
<para>
|
|
|
|
Returns an indexed or associative array with the headers, or &false; on
|
|
|
|
failure.
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
<refsect1 role="changelog">
|
|
|
|
&reftitle.changelog;
|
|
|
|
<para>
|
|
|
|
<informaltable>
|
|
|
|
<tgroup cols="2">
|
|
|
|
<thead>
|
|
|
|
<row>
|
|
|
|
<entry>&Version;</entry>
|
|
|
|
<entry>&Description;</entry>
|
|
|
|
</row>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<row>
|
|
|
|
<entry>5.1.3</entry>
|
|
|
|
<entry>
|
|
|
|
This function now uses the default stream context, which can be
|
2011-09-17 14:06:14 +00:00
|
|
|
set/changed with the <function>stream_context_set_default</function>
|
2007-02-03 01:10:52 +00:00
|
|
|
function.
|
|
|
|
</entry>
|
|
|
|
</row>
|
2018-01-31 09:07:01 +00:00
|
|
|
<row>
|
|
|
|
<entry>7.1.0</entry>
|
|
|
|
<entry>
|
|
|
|
The <parameter>context</parameter> parameter was added.
|
|
|
|
</entry>
|
|
|
|
</row>
|
2007-02-03 01:10:52 +00:00
|
|
|
</tbody>
|
|
|
|
</tgroup>
|
|
|
|
</informaltable>
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
<refsect1 role="examples">
|
|
|
|
&reftitle.examples;
|
2006-03-10 04:54:53 +00:00
|
|
|
<para>
|
|
|
|
<example>
|
|
|
|
<title><function>get_headers</function> example</title>
|
|
|
|
<programlisting role="php">
|
2004-05-29 10:39:03 +00:00
|
|
|
<![CDATA[
|
|
|
|
<?php
|
|
|
|
$url = 'http://www.example.com';
|
2004-04-25 19:21:22 +00:00
|
|
|
|
2004-05-29 10:39:03 +00:00
|
|
|
print_r(get_headers($url));
|
2004-04-25 19:21:22 +00:00
|
|
|
|
2004-09-15 08:34:27 +00:00
|
|
|
print_r(get_headers($url, 1));
|
2004-05-29 10:39:03 +00:00
|
|
|
?>
|
|
|
|
]]>
|
2006-03-10 04:54:53 +00:00
|
|
|
</programlisting>
|
|
|
|
&example.outputs.similar;
|
|
|
|
<screen>
|
2004-05-29 10:39:03 +00:00
|
|
|
<![CDATA[
|
|
|
|
Array
|
|
|
|
(
|
|
|
|
[0] => HTTP/1.1 200 OK
|
|
|
|
[1] => Date: Sat, 29 May 2004 12:28:13 GMT
|
|
|
|
[2] => Server: Apache/1.3.27 (Unix) (Red-Hat/Linux)
|
|
|
|
[3] => Last-Modified: Wed, 08 Jan 2003 23:11:55 GMT
|
|
|
|
[4] => ETag: "3f80f-1b6-3e1cb03b"
|
|
|
|
[5] => Accept-Ranges: bytes
|
|
|
|
[6] => Content-Length: 438
|
|
|
|
[7] => Connection: close
|
|
|
|
[8] => Content-Type: text/html
|
|
|
|
)
|
|
|
|
|
|
|
|
Array
|
|
|
|
(
|
|
|
|
[0] => HTTP/1.1 200 OK
|
|
|
|
[Date] => Sat, 29 May 2004 12:28:14 GMT
|
|
|
|
[Server] => Apache/1.3.27 (Unix) (Red-Hat/Linux)
|
|
|
|
[Last-Modified] => Wed, 08 Jan 2003 23:11:55 GMT
|
|
|
|
[ETag] => "3f80f-1b6-3e1cb03b"
|
|
|
|
[Accept-Ranges] => bytes
|
|
|
|
[Content-Length] => 438
|
|
|
|
[Connection] => close
|
|
|
|
[Content-Type] => text/html
|
|
|
|
)
|
|
|
|
]]>
|
2006-03-10 04:54:53 +00:00
|
|
|
</screen>
|
|
|
|
</example>
|
2011-09-17 14:34:06 +00:00
|
|
|
<example>
|
|
|
|
<title><function>get_headers</function> using HEAD example</title>
|
|
|
|
<programlisting role="php">
|
|
|
|
<![CDATA[
|
|
|
|
<?php
|
|
|
|
// By default get_headers uses a GET request to fetch the headers. If you
|
|
|
|
// want to send a HEAD request instead, you can do so using a stream context:
|
|
|
|
stream_context_set_default(
|
|
|
|
array(
|
|
|
|
'http' => array(
|
|
|
|
'method' => 'HEAD'
|
|
|
|
)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
$headers = get_headers('http://example.com');
|
|
|
|
?>
|
|
|
|
]]>
|
|
|
|
</programlisting>
|
|
|
|
</example>
|
2006-03-10 04:54:53 +00:00
|
|
|
</para>
|
|
|
|
</refsect1>
|
2007-02-03 01:10:52 +00:00
|
|
|
|
2012-01-06 09:47:38 +00:00
|
|
|
<refsect1 role="seealso">
|
|
|
|
&reftitle.seealso;
|
|
|
|
<para>
|
|
|
|
<simplelist>
|
|
|
|
<member><function>apache_request_headers</function></member>
|
|
|
|
</simplelist>
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
|
2006-03-10 04:54:53 +00:00
|
|
|
</refentry>
|
2004-04-25 19:21:22 +00:00
|
|
|
|
|
|
|
<!-- 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
|
2009-09-25 07:04:39 +00:00
|
|
|
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
|
2004-04-25 19:21:22 +00:00
|
|
|
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
|
|
|
|
-->
|