データベースからxmlファイルを作成するPHPスクリプトがあります。スクリプトで xml データを作成し、すぐに .gzip ファイルをダウンロードできるようにしたいと考えています。アイデアを教えてください。
ありがとう!
gzencode関数を使用すると、gzip 圧縮を簡単に適用できます。
<?
header("Content-Disposition: attachment; filename=yourFile.xml.gz");
header("Content-type: application/x-gzip");
echo gzencode($xmlToCompress);
このようなもの?
<?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
?>
gzip モジュールが利用できない場合は、
<?php
system('gzip filename.xml');
?>