带有file_get_contents的https标头

时间:2013-03-22 04:31:03

标签: php

这不是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);

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

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

2 个答案:

答案 0 :(得分:1)

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

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

为什么呢?谷歌决定。

答案 1 :(得分: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);