Question

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!

Was it helpful?

Solution

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);

OTHER TIPS

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
?>

If you don't have the gzip module available,

<?php

  system('gzip filename.xml');

?>
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top