vote up 2 vote down star

I'm retrieving a gzipped web page via curl, but when I output the retrieved content to the browser I just get the raw gzipped data. How can I decode the data in PHP?

One method I found was to write the content to a tmp file and then ...

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

.... but man, there's got to be a better way.

Edit: This isn't a file, but a gzipped html page returned by a web server.

flag

80% accept rate
Is the file itself gzipped, or is the server gzipping it for transfer? – Artelius Nov 22 '08 at 1:05
Instead of decoding the gzip data, could you just send the correct headers so that the browser recognizes it properly? Or, if you don't want it gzipped in the first place, tell cURL not to ask for gzipped data by setting CURLOPT_ENCODING to "identity". – Andrew Medico Nov 22 '08 at 1:19

2 Answers

vote up 1 vote down

I assume that would be gzdecode($data)... Hmmm, but it looks like that function doesn't actually exist in any release version yet. This should do the trick (worked for me).

link|flag
vote up 0 vote down

There are several solutions proposed in the comments on the PHP page for gzdecode.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.