在 PHP 中解码通过 cURL 检索的压缩网页
使用 cURL 检索 gzip 压缩网页时,提取实际内容可能具有挑战性如果它以原始形式出现。 PHP 提供了比通过临时文件手动解压数据更好的解决方案。
解决方案:
关键在于配置 cURL 的“自动编码”模式。这使得 cURL 能够传达其对不同编码方法的支持(通过 Accept-Encoding 标头)并自动处理解压缩过程。要激活此模式,请使用以下代码:
<code class="php">// Allow cURL to use gzip compression or any other supported encoding // A blank string activates 'auto' mode curl_setopt($ch, CURLOPT_ENCODING, '');</code>
或者,要指定特定编码(仅限 gzip),请使用以下命令:
<code class="php">// Allow cURL to use gzip compression curl_setopt($ch, CURLOPT_ENCODING, 'gzip');</code>
这个简单的调整将使 cURL自动解压缩gzip压缩后的网页,直接为您提供解码后的内容。有关curl_setopt的更多信息,请参阅PHP文档。
以上是如何在 PHP 中解码通过 cURL 检索的 Gzip 压缩网页?的详细内容。更多信息请关注PHP中文网其他相关文章!