创建一个zip文件

时间:2012-10-26 14:37:38

标签: php stream zip

我有一个脚本来下载我的数据库转储,但文件越来越大。我尝试用以下方法压缩它:

$dump = `mysqldump -u $username -p$password $dbname`;
$fp = fopen('php://temp', 'r+');
stream_filter_append($fp, 'zlib.deflate', STREAM_FILTER_WRITE, array('level' => 9));
fputs($fp, $dump);
rewind($fp);

//Envoi du "fichier"
$this->setLayout(false);
header("Content-Type: application/force-download");
header("Content-Type: application/octet-stream");
header("Content-Type: application/download");
header("Content-Description: SQL Dump");  
header('Content-Disposition: attachment; filename="mydump.sql.zip"'); 
$this->fichier = stream_get_contents($fp);

但是这会创建一个无效的zip文件。我错过了什么吗?

修改

标题中也一定有错误,Firefox将文件显示为“HTM文档”,我无法显示文件大小。

1 个答案:

答案 0 :(得分:8)

为什么不简单地做

$dump = `mysqldump ... | gzip -9 > somefile.gz`;

并跳过整个“在php内部执行gzip”?

您甚至可以用

替换整个位
passthru('mysqldump ... | gzip -9');

并将输出直接转储到客户端浏览器。