gpt4 book ai didi

php - 使用 cURL 获取压缩内容

转载 作者:可可西里 更新时间:2023-10-31 23:53:21 25 4
gpt4 key购买 nike

我需要获取各种网页的内容。其中一些是使用不同的方法(gzip、deflate 等)压缩的。我在 Internet 上搜索并找到了 gzip 内容的解决方案:

$ch = curl_init("http://games2k.net/");
curl_setopt($ch,CURLOPT_ENCODING , "gzip");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$output = curl_exec($ch);
curl_close($ch);
echo $output;

但是,这仅适用于单个方法。我需要一个适用于尽可能多的压缩方法(最好是所有压缩方法)或至少适用于最流行的两种压缩方法的解决方案,即 gzip 和 deflate。

非常感谢您的帮助!

最佳答案

你试过吗

$ch = curl_init("http://games2k.net/");
curl_setopt($ch,CURLOPT_ENCODING , "");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$output = curl_exec($ch);
curl_close($ch);
echo $output;

将引号留空

关于php - 使用 cURL 获取压缩内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17744112/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com