Jump to content

Gzip file


alexa85

Recommended Posts

Hi guys,

 

I'll try to be concise.

 

When I use this code (zlib):

 

$xmlFile = 'test.xml';
$data = implode("", file($xmlFile));
$gzdata = gzencode($data, 9);
$gzFile = "test.gz";
$fp = fopen($gzFile, "w");
fwrite($fp, $gzdata);
fclose($fp);

 

It produces test.gz but when I extract the .gz file I get "test" file (without extension)

 

I need to gzip the xml file (keeping the extension) not only the data (when I extract the gz I should get test.xml back)

 

Is there a way I can do this ? For security reasons I can't use exec() function.

 

Please help! Thanks in advance,

 

Alex 

Link to comment
https://forums.phpfreaks.com/topic/221105-gzip-file/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.