// Allow cURL to use gzip compression, or any other supported encoding
// A blank string activates 'auto' mode
curl_setopt($ch, CURLOPT_ENCODING , '');
如果您特别希望强制标头为Accept-Encoding: gzip,则可以改用以下命令:
// Allow cURL to use gzip compression, or any other supported encoding
curl_setopt($ch, CURLOPT_ENCODING , 'gzip');
2条答案
按热度按时间aydmsdu91#
以下命令启用cURL的“自动编码”模式,在该模式下,它将向服务器宣布它支持哪些编码方法(通过
Accept-Encoding
头),然后自动解压缩响应:如果您特别希望强制标头为
Accept-Encoding: gzip
,则可以改用以下命令:在PHP documentation: curl_setopt中了解更多信息。
感谢评论者帮助改进这个答案。
tcomlyy62#
多功能GUNZIP功能:
函数与CURL集成示例: