PHP headers_list()函数

headers_list():函数返回已发送或者将要发送HTTP相应头

语法:

headers_list()

返回结果:

php打印header值php获取发送给用户header信息的办法 jQuery

headers_list():函数没有参数,但它会返回一个数组。
返回的数组中包含一个数字索引表,包含了要发送给客户真个header信息

php获取发送的HTTP相应头

例1:

代码

<?phpsetcookie(\公众TestCookie\"大众,\"大众SomeValue\"大众);header(\"大众X-Sample-Test: foo\"大众);header('Content-type: text/plain');// 打印发送的HTTP相应头var_dump(headers_list());?>

打印结果:

array(4) { [0]=> string(24) \"大众X-Powered-By: PHP/5.6.30\公众 [1]=> string(32) \公众Set-Cookie: TestCookie=SomeValue\公众 [2]=> string(18) \"大众X-Sample-Test: foo\"大众 [3]=> string(38) \"大众Content-type: text/plain;charset=UTF-8\公众}

例2:

代码:

<?phpheader(\"大众X-Sample-Test: foo\公众);header('Content-type: text/plain');$arr = headers_list();foreach($arr as $a) { echo $a;}?>

打印结果:

X-Powered-By: PHP/5.6.30X-Sample-Test: fooContent-type: text/plain;charset=UTF-8

扩展:

如果要判断是否已经发送HTTP相应头,请利用 headers_sent() 函数。