2

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

$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 文档”,我无法显示文件大小。

4

1 回答 1

8

为什么不干脆做

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

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

你甚至可以用

passthru('mysqldump ... | gzip -9');

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

于 2012-10-26T14:39:07.170 回答