Ben db bir xml dosyası oluşturur bir PHP komut dosyası var. Ben komut dosyası xml veri oluşturmak ve hemen indirmek için kullanılabilir. Gzip dosyası yapmak istiyorum. Bana bazı fikirler verebilir misiniz?
Teşekkürler!
Kolayca gzencode fonksiyonu ile gzip sıkıştırma uygulayabilirsiniz.
<?
header("Content-Disposition: attachment; filename=yourFile.xml.gz");
header("Content-type: application/x-gzip");
echo gzencode($xmlToCompress);
Eğer gzip module mevcut yoksa,
<?php
system('gzip filename.xml');
?>