«

PHP:apache_response_headers()的用法

时间:2024-3-1 21:58     作者:韩俊     分类: PHP


apache_response_headers

(PHP 4 >= 4.3.0, PHP 5)

apache_response_headers — 获得全部 HTTP 响应头信息

说明

array apache_response_headers
( void
)

获得全部 HTTP 响应头信息。

返回值

成功时返回包含全部 Apache 响应头信息的数组, 或者在失败时返回 FALSE.

更新日志

版本 说明 5.5.7 此函数可用于 CLI server. 5.4.0 此函数可用于 FastCGI。 此前仅在PHP以 Apache 模块方式运行时支持。 4.3.3

从 PHP 4.3.3 起,也可在 Netscape/iPlanet/SunONE Web 服务器的 NSAPI 服务器模块使用此函数。

范例

Example #1 apache_response_headers() 示例

<?php
print_r(apache_response_headers());
?>

以上例程的输出类似于:

Array
(
    [Accept-Ranges] => bytes
    [X-Powered-By] => PHP/4.3.8
)

参见

apache_request_headers() - 获取全部 HTTP 请求头信息 headers_sent() - Checks if or where headers have been sent headers_list() - Returns a list of response headers sent (or ready to send)

标签: php php教程

热门推荐