显示PHP为HTTP请求准确的标头?

时间:2012-05-04 18:51:52

标签: php http

有没有办法获得file_get_contents()get_headers()等函数发送的确切标题?

喜欢

get_headers('http://google.it');
echo php_get_request_headers();  //> ?

1 个答案:

答案 0 :(得分:1)

我遇到过这个问题,我使用的是代理,例如fiddler http://www.fiddler2.com/fiddler2/

$default_opts = array(
  'http'=>array(
    'method'=>"HEAD",
    'proxy'=>"tcp://localhost:8888"
  )
);

$default = stream_context_set_default($default_opts);
$headers = get_headers('http://google.com');

var_dump($headers);

它捕获此脚本发送的所有请求,原因是stream_context_set_default ..这适用于file_get_contentsfopen等。