欢迎访问服务器技术网-www.fuwuqijishu.com

PHP headers_list() 函数

PHP fuwuqijishu 2年前 (2022-09-04) 31次浏览 0个评论 扫描二维码
文章目录[隐藏]

PHP headers_list() 函数


完整的 PHP HTTP 参考手册


定义和用法

headers_list() 函数返回已发送的(或待发送的)响应头部的一个列表。

该函数返回包含报头的数组。

语法

headers_list()


提示和注释

提示:如需确定是否已发送报头,请使用 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 参考手册

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2208.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900