解码通过 PHP 中的 cURL 检索的 gzip 压缩网页

2022-08-30 09:33:53

我正在通过curl检索gzip的网页,但是当我将检索到的内容输出到浏览器时,我只得到原始的gzip数据。如何解码PHP中的数据?

我发现的一种方法是将内容写入tmp文件,然后...

$f = gzopen($filename,"r");
$content = gzread($filename,250000);
gzclose($f);

....但是,伙计,一定有更好的方法。

编辑:这不是一个文件,而是一个由Web服务器返回的gzi压缩的html页面。


答案 1

我使用卷曲和:

curl_setopt($ch, CURLOPT_ENCODING , "gzip");

答案 2

多功能 GUNZIP 功能:

   function gunzip($zipped) {
      $offset = 0;
      if (substr($zipped,0,2) == "\x1f\x8b")
         $offset = 2;
      if (substr($zipped,$offset,1) == "\x08")  {
         # file_put_contents("tmp.gz", substr($zipped, $offset - 2));
         return gzinflate(substr($zipped, $offset + 8));
      }
      return "Unknown Format";
   }  

使用 CURL 集成函数的示例:

      $headers_enabled = 1;
      curl_setopt($c, CURLOPT_HEADER,  $headers_enabled)
      $ret = curl_exec($c);

      if ($headers_enabled) {
         # file_put_contents("preungzip.html", $ret);

         $sections = explode("\x0d\x0a\x0d\x0a", $ret, 2);
         while (!strncmp($sections[1], 'HTTP/', 5)) {
            $sections = explode("\x0d\x0a\x0d\x0a", $sections[1], 2);
         }
         $headers = $sections[0];
         $data = $sections[1];

         if (preg_match('/^Content-Encoding: gzip/mi', $headers)) {
            printf("gzip header found\n");
            return gunzip($data);
         }
      }

      return $ret;

推荐