请注意,它不返回状态报头
<?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
)
(PHP 5, PHP 7, PHP 8)
headers_list — 返回已发送(或准备发送)的响应报头列表
此函数没有参数。
返回一个包含报头的数字索引数组。
示例 #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 时,才能访问和输出报头。
请注意,它不返回状态报头
<?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
)
当您从命令行运行 PHP 时,此函数将无法工作。它将始终返回一个空数组。这在使用 PHPUnit 或 Codeception 测试项目时可能是一个问题。
要解决此问题,请安装 xdebug 扩展并在 cli 上使用 `xdebug_get_headers`。
<?php
$headers = php_sapi_name() === 'cli' ? xdebug_get_headers() : headers_list();
?>