gpt4 book ai didi

php get_headers 结果显示

转载 作者:可可西里 更新时间:2023-11-01 17:03:44 25 4
gpt4 key购买 nike

我习惯了get_headers()函数

`$`url = 'http://stackoverflow.com';
$s=get_headers(`$`url, 1);
print_r(`$`s);

然后我得到类似的输出

Array ( [0] => HTTP/1.1 200 OK [Cache-Control] => public, max-age=27 [Content-Type] => text/html; charset=utf-8 [Expires] => Mon, 07 Nov 2011 13:44:38 GMT [Last-Modified] => Mon, 07 Nov 2011 13:43:38 GMT [Vary] => * [Date] => Mon, 07 Nov 2011 13:44:10 GMT [Connection] => close [Content-Length] => 195251 ) 

怎样才能显示喜欢

缓存控制:

内容类型:

过期:

最后修改:

连接:

内容长度:

最佳答案

get_headers() 返回一个数组。如果您将第二个可选参数设置为 1,那么它将返回一个带有直观键的数组。

例如getheaders($url, 1)

你可以像这样单独打印它们:

$url = 'http://stackoverflow.com';
$s = get_headers($url, 1);

print("Cache-Control: ".$s[Cache-Control]."\n");
print("Content-Type: ".$s[Content-Type]."\n");
print("Expires: ".$s[Expires]."\n");
print("Last-Modified: ".$s[Last-Modified]."\n");

有关完整定义,请参阅 PHP manual .

关于php get_headers 结果显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8037356/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com