Uncompress a gzip file from CURL, on php

Just tell cURL to decode the response automatically whenever it’s gzipped

curl_setopt($ch,CURLOPT_ENCODING, '');

Leave a Comment