array headers_list ( void )
headers_list() 会返回准备发送给浏览器/客户端的 HTTP 头列表。 检测这些头是否已经发送,使用 headers_sent()。
返回数字索引的头数组。
<?php /* setcookie() 会自己添加一个响应头 */ setcookie('foo', 'bar'); /* 添加自定义的响应头 大多数客户端会主动忽略 */ header("X-Sample-Test: foo"); /* 响应中指定内容为明文 text */ header('Content-type: text/plain'); /* 所以会发送什么头呢? */ var_dump(headers_list()); ?>
输出结果:
array(4) { [0]=> string(23) "X-Powered-By: PHP/5.1.3" [1]=> string(19) "Set-Cookie: foo=bar" [2]=> string(18) "X-Sample-Test: foo" [3]=> string(24) "Content-type: text/plain" }