0

这不会得到 gzip 压缩的内容,而是纯内容。如何使 file_get_contents 使用 https 发送标头?

$url = 'https://www.google.co.in/';

///Try to fetch compressed content using the file_get_contents function
$opts = array(
'http'=>array(
    'method'=>"GET",
    'header'=>"Accept-language: en-US,en;q=0.8\r\n" .
                "Accept-Encoding: gzip,deflate,sdch\r\n" .
                "Accept-Charset:UTF-8,*;q=0.5\r\n"
)
);

$context = stream_context_create($opts);
$zipped_content = file_get_contents($url ,false,$context);

echo $zipped_content;

print_r($http_response_header);

如果 url 是http://www.yahoo.co.in则提供 gzip 压缩的内容(并确认,它看起来像垃圾)。

但是当使用“https://”时,file_get_contents 似乎没有发送指定的标头。

4

2 回答 2

1

标头不行...添加用户代理就可以了。

"User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:19.0) Gecko/20100101 Firefox/19.0 FirePHP/0.4\r\n".

为什么?谷歌决定。

于 2013-03-22T07:35:39.573 回答
0

试试这个

 $url = "https://www.google.co.in/";   
  $ch = curl_init();    
  curl_setopt($ch,CURLOPT_URL,$url);   
  curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);   
  curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,$timeout);    
  curl_setopt($ch, CURLOPT_HTTPHEADER, array('Accept-Encoding: gzip'));   
  $contents = curl_exec($ch);   
  curl_close($ch);
于 2013-03-22T06:08:36.903 回答