tags:

views:

606

answers:

3

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!

+4  A: 

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);
CMS
Exactly what I was looking for. Thanks!
pistolshrimp
A: 

If you don't have the gzip module available,

<?php

  system('gzip filename.xml');

?>
kkyy
A: 

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