alexa85 Posted December 9, 2010 Share Posted December 9, 2010 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 More sharing options...
Buddski Posted December 9, 2010 Share Posted December 9, 2010 Try adding .xml into your $gzFile variable. $gzFile = 'text.xml.gz'; Link to comment https://forums.phpfreaks.com/topic/221105-gzip-file/#findComment-1144855 Share on other sites More sharing options...
alexa85 Posted December 9, 2010 Author Share Posted December 9, 2010 It worked! Thanks man! Link to comment https://forums.phpfreaks.com/topic/221105-gzip-file/#findComment-1144858 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.