在php中获取Headers响应

时间:2014-07-30 07:37:35

标签: php header response

我在标签标题中查看了Inspect Element,其中包含Form Data:

部分
In Form Data section:
isslverify:true
iagent:Mozilla/5.0 (Windows NT 6.1; WOW64; rv:22.0) Gecko/20100101 Firefox/22.0
ihttpheader:true
url:https://docs.google.com/file/d/0B2_6BBaiKDFLYlBVR1QwUko0UHc/edit?pli=1

如何在PHP代码中获取此信息。

三江源!

2 个答案:

答案 0 :(得分:4)

print_r(get_headers($url));

这将打印所有标题关联数据

http://php.net/manual/en/function.get-headers.php

答案 1 :(得分:0)

你必须使用get_headers php函数:

// set the url you want to get the headers
$url = 'http://www.example.com';

// print out the headers on a non-associative array
var_dump(get_headers($url));

// build it up an associative array
var_dump(get_headers($url, 1));