uTools-Manuals/docs/php/apache_request_headers.html
2019-04-08 23:22:26 +08:00

130 lines
4.8 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>获取全部 HTTP 请求头信息</title>
</head>
<body class="docs"><div id="layout">
<div id="layout-content"><div id="function.apache-request-headers" class="refentry">
<div class="refnamediv">
<h1 class="refname">apache_request_headers</h1>
<p class="verinfo">(PHP 4 &gt;= 4.3.0, PHP 5, PHP 7)</p><p class="refpurpose"><span class="refname">apache_request_headers</span> &mdash; <span class="dc-title">获取全部 HTTP 请求头信息</span></p>
</div>
<div class="refsect1 description" id="refsect1-function.apache-request-headers-description">
<h3 class="title">说明</h3>
<div class="methodsynopsis dc-description">
<span class="methodname"><strong>apache_request_headers</strong></span>
( <span class="methodparam">void</span>
) : <span class="type">array</span></div>
<p class="para rdfs-comment">
获取当前请求的所有请求头信息
</p>
</div>
<div class="refsect1 returnvalues" id="refsect1-function.apache-request-headers-returnvalues">
<h3 class="title">返回值</h3>
<p class="para">
包含当前请求所有头信息的数组,失败返回
<strong><code>FALSE</code></strong>
</p>
</div>
<div class="refsect1 changelog" id="refsect1-function.apache-request-headers-changelog">
<h3 class="title">更新日志</h3>
<p class="para">
<table class="doctable informaltable">
<thead>
<tr>
<th>版本</th>
<th>说明</th>
</tr>
</thead>
<tbody class="tbody">
<tr>
<td>5.5.7</td>
<td>
此函数可用于 CLI server。
</td>
</tr>
<tr>
<td>5.4.0</td>
<td>
此函数可用于 FastCGI。 此前仅在PHP以 Apache 模块方式运行时支持。
</td>
</tr>
<tr>
<td>4.3.3</td>
<td>
<p class="para">
PHP 4.3.3 起,也可在 Netscape/iPlanet/SunONE Web 服务器的
<a href="book.nsapi.html" class="link">NSAPI 服务器模块</a>使用此函数。</p>
</td>
</tr>
</tbody>
</table>
</p>
</div>
<div class="refsect1 examples" id="refsect1-function.apache-request-headers-examples">
<h3 class="title">范例</h3>
<p class="para">
<div class="example" id="example-5820">
<p><strong>Example #1 <span class="function"><strong>apache_request_headers()</strong></span> 示例</strong></p>
<div class="example-contents">
<div class="phpcode"><pre><span style="color: #000000">
<span style="color: #0000BB">&lt;?php<br />$headers&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">apache_request_headers</span><span style="color: #007700">();<br /><br />foreach&nbsp;(</span><span style="color: #0000BB">$headers&nbsp;</span><span style="color: #007700">as&nbsp;</span><span style="color: #0000BB">$header&nbsp;</span><span style="color: #007700">=&gt;&nbsp;</span><span style="color: #0000BB">$value</span><span style="color: #007700">)&nbsp;{<br />&nbsp;&nbsp;&nbsp;&nbsp;echo&nbsp;</span><span style="color: #DD0000">"</span><span style="color: #0000BB">$header</span><span style="color: #DD0000">:&nbsp;</span><span style="color: #0000BB">$value</span><span style="color: #DD0000">&nbsp;&lt;br&nbsp;/&gt;\n"</span><span style="color: #007700">;<br />}<br /></span><span style="color: #0000BB">?&gt;</span>
</span>
</pre></div>
</div>
<div class="example-contents"><p>以上例程的输出类似于:</p></div>
<div class="example-contents screen">
<div class="cdata"><pre>
Accept: */*
Accept-Language: en-us
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/4.0
Host: www.example.com
Connection: Keep-Alive
</pre></div>
</div>
</div>
</p>
</div>
<div class="refsect1 notes" id="refsect1-function.apache-request-headers-notes">
<h3 class="title">注释</h3>
<blockquote class="note"><p><strong class="note">Note</strong>:
<p class="para">
你也可以试图从环境变量中读取普通<acronym title="Common Gateway Interface">CGI</acronym>变量PHP以<span class="productname">Apache</span>模块方式运行时有可能无法获得。使用<span class="function"><a href="phpinfo.html" class="function">phpinfo()</a></span>获得可读取的变量列表。
<a href="language.variables.predefined.html" class="link">环境变量</a>.
</p>
</p></blockquote>
</div>
<div class="refsect1 seealso" id="refsect1-function.apache-request-headers-seealso">
<h3 class="title">参见</h3>
<p class="para">
<ul class="simplelist">
<li class="member"><span class="function"><a href="apache_response_headers.html" class="function" rel="rdfs-seeAlso">apache_response_headers()</a> - 获得全部 HTTP 响应头信息</span></li>
</ul>
</p>
</div>
</div></div></div></body></html>