有没有办法获得file_get_contents()
或get_headers()
等函数发送的确切标题?
喜欢
get_headers('http://google.it');
echo php_get_request_headers(); //> ?
答案 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_contents
,fopen
等。