开发者

How do I use file_get_contents to get a gzip'ed page on a remote web server in php?

开发者 https://www.devze.com 2023-01-17 21:41 出处:网络
I\'m trying to receive a gzip\'ed version of a page through file_get_contents in php 5.2.9 I was able to do it using fopen with the following code:

I'm trying to receive a gzip'ed version of a page through file_get_contents in php 5.2.9

I was able to do it using fopen with the following code:

    $opts = array(
  'http'=>array(
    'method'=>"GET",
    'header'=>"Accept-language: en\r\n" .
              "Accept-Encoding: gzip\r\n"
  )
);

$context = stream_context_create($opts);
ob_start();
$fp = fopen('http://example.com', 'r', false, $context);
fpassthru($fp);
fclose($fp);
$content = ob_get_contents()开发者_高级运维;
ob_end_clean();

That works, but I was hoping there was a way I could do it using file_get_contents instead.

Thanks.


Have you tried this?

$content = file_get_contents('http://example.com',false,$context);


Try using 'compress.zlib://http://example.com'

Answer taken from here: How can I read GZIP-ed response from Stackoverflow API in PHP?

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号