1

有没有办法让函数发送的确切标头像file_get_contents()or get_headers()

喜欢

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

1 回答 1

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

于 2012-05-04T19:05:51.057 回答