最新的Web开发教程
 

PHP headers_list() Function


<完整PHP HTTP参考

定义和用法

headers_list()函数返回发送的响应头的列表(or ready to send)到客户端。

该函数返回标头的阵列。

句法

headers_list()

提示和注意

Tip:要确定是否没有头已经尚未发送,使用headers_sent()函数。


实施例1

<?php
setcookie("TestCookie","SomeValue");
header("X-Sample-Test: foo");
header("Content-type: text/plain");
?>

<html>
<body>

<?php
// What headers are to be sent?
var_dump(headers_list());
?>

</body>
</html>

代码的输出将是:

array(4)
{
[0]=> string(23) "X-Powered-By: PHP/5.1.1"
[1]=> string(19) "Set-Cookie: TestCookie=SomeValue"
[2]=> string(18) "X-Sample-Test: foo"
[3]=> string(24) "Content-type: text/plain"
}

<完整PHP HTTP参考