如何使用PHP提供gzip xml文件供下载

如何使用PHP提供gzip xml文件供下载

问题描述:

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!

我有一个PHP脚本,可以从db创建一个xml文件。 我想让脚本创建xml数据并立即生成.gzip文件供下载。 你能给我一些想法吗? p>

谢谢! p> div>

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

If you don't have the gzip module available,

<?php

  system('gzip filename.xml');

?>

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