uTools-Manuals/docs/php/apache_response_headers.html
2019-04-28 19:00:34 +08:00

119 lines
4.1 KiB
HTML

<!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-response-headers" class="refentry">
<div class="refnamediv">
<h1 class="refname">apache_response_headers</h1>
<p class="verinfo">(PHP 4 &gt;= 4.3.0, PHP 5, PHP 7)</p><p class="refpurpose"><span class="refname">apache_response_headers</span> &mdash; <span class="dc-title">获得全部 HTTP 响应头信息</span></p>
</div>
<div class="refsect1 description" id="refsect1-function.apache-response-headers-description">
<h3 class="title">说明</h3>
<div class="methodsynopsis dc-description">
<span class="methodname"><strong>apache_response_headers</strong></span>
( <span class="methodparam">void</span>
) : <span class="type">array</span></div>
<p class="para rdfs-comment">
获得全部 HTTP 响应头信息。
</p>
</div>
<div class="refsect1 returnvalues" id="refsect1-function.apache-response-headers-returnvalues">
<h3 class="title">返回值</h3>
<p class="para">
成功时返回包含全部 Apache 响应头信息的数组, 或者在失败时返回 <strong><code>FALSE</code></strong>.
</p>
</div>
<div class="refsect1 changelog" id="refsect1-function.apache-response-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-response-headers-examples">
<h3 class="title">范例</h3>
<p class="para">
<div class="example" id="example-5821">
<p><strong>Example #1 <span class="function"><strong>apache_response_headers()</strong></span> 示例</strong></p>
<div class="example-contents">
<div class="phpcode"><pre><span style="color: #000000">
<span style="color: #0000BB">&lt;?php<br />print_r</span><span style="color: #007700">(</span><span style="color: #0000BB">apache_response_headers</span><span style="color: #007700">());<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>
Array
(
[Accept-Ranges] =&gt; bytes
[X-Powered-By] =&gt; PHP/4.3.8
)
</pre></div>
</div>
</div>
</p>
</div>
<div class="refsect1 seealso" id="refsect1-function.apache-response-headers-seealso">
<h3 class="title">参见</h3>
<p class="para">
<ul class="simplelist">
<li class="member"><span class="function"><a href="apache_request_headers.html" class="function" rel="rdfs-seeAlso">apache_request_headers()</a> - 获取全部 HTTP 请求头信息</span></li>
<li class="member"><span class="function"><a href="headers_sent.html" class="function" rel="rdfs-seeAlso">headers_sent()</a> - 检测 HTTP 头是否已经发送</span></li>
<li class="member"><span class="function"><a href="headers_list.html" class="function" rel="rdfs-seeAlso">headers_list()</a> - 返回已发送的 HTTP 响应头(或准备发送的)</span></li>
</ul>
</p>
</div>
</div></div></div></body></html>