我有一个脚本可以下载我的数据库转储,但文件越来越大。我尝试用以下方式压缩它:
$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 文档”,我无法显示文件大小。