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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.