vote up 0 vote down star
1

I have a PHP script that creates an xml file from the db. I would like to have the script create the xml data and immediately make a .gzip file available for download. Can you please give me some ideas?

Thanks!

flag

3 Answers

vote up 4 vote down check

You can easily apply gzip compression with the gzencode function.

<?
header("Content-Disposition: attachment; filename=yourFile.xml.gz");
header("Content-type: application/x-gzip");

echo gzencode($xmlToCompress);
link|flag
Exactly what I was looking for. Thanks! – pistolshrimp Mar 3 at 6:41
vote up 0 vote down

Something like this?

<?php
 header('Content-type: application/x-gzip');
 header('Content-Disposition: attachment; filename="downloaded.gz"');
 $data = implode("", file('somefile.xml'));
 print( gzencode($data, 9) ); //9 is the level of compression
?>
link|flag
vote up 0 vote down

If you don't have the gzip module available,

<?php

  system('gzip filename.xml');

?>
link|flag

Your Answer

Get an OpenID
or

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