PHP Conference Japan 2024

headers_list

(PHP 5, PHP 7, PHP 8)

headers_list返回已发送(或准备发送)的响应报头列表

描述

headers_list(): 数组

headers_list() 将返回要发送到浏览器/客户端的报头列表。要确定这些报头是否已发送,请使用 headers_sent()

参数

此函数没有参数。

返回值

返回一个包含报头的数字索引数组。

示例

示例 #1 使用 headers_list() 的示例

<?php

/* setcookie() 将自行添加响应报头 */
setcookie('foo', 'bar');

/* 定义自定义响应报头
这将被大多数客户端忽略 */
header("Example-Test: foo");

/* 在响应中指定纯文本内容 */
header('Content-Type: text/plain; charset=UTF-8');

/* 将要发送哪些报头? */
var_dump(headers_list());

?>

以上示例将输出类似以下内容

array(3) {
  [0]=>
  string(19) "Set-Cookie: foo=bar"
  [1]=>
  string(17) "Example-Test: foo"
  [2]=>
  string(39) "Content-Type: text/plain; charset=UTF-8"
}

注释

注意:

只有在使用支持它们的 SAPI 时,才能访问和输出报头。

参见

添加注释

用户贡献的注释 2 条注释

22
匿名
12 年前
请注意,它不返回状态报头

<?php

header
('HTTP/1.1 301 Moved Permanently', true, 301);

header('foo: bar');
header('a: b');
header('colon less example');

print_r(headers_list());
?>

数组
(
[0] => X-Powered-By: PHP/5.4.7
[1] => foo: bar
[2] => a: b
)
19
arnold at jasny dot net
7 年前
当您从命令行运行 PHP 时,此函数将无法工作。它将始终返回一个空数组。这在使用 PHPUnit 或 Codeception 测试项目时可能是一个问题。

要解决此问题,请安装 xdebug 扩展并在 cli 上使用 `xdebug_get_headers`。

<?php
$headers
= php_sapi_name() === 'cli' ? xdebug_get_headers() : headers_list();
?>
To Top