PHP- ZipArchive 0 字节文件



我正在尝试下载一个文件夹作为zip,但我总是得到一个包含0字节文件的zip。我尝试了在互联网上找到的所有解决方案,但没有帮助。这是代码:

$files= scandir($dir);
$zip = new ZipArchive();

$tmp_file = tempnam('.','');
if (  $zip->open($tmp_file, ZipArchive::CREATE)===TRUE) {
# loop through each file
foreach($files as $file){
# download file
$download_file = file_get_contents($file);
#add it to the zip
$zip->addFromString(basename($file),$download_file);
}
# close zip
$zip->close();
# send the file to the browser as a download
header("Content-disposition: attachment; filename=$nome_dir.zip");
header("Content-length: " . filesize($tmp_file));
header('Content-type: application/zip');
readfile($tmp_file);
}

我不明白我错在哪里

这可能与 PHP 中的内存分配问题有关,例如 我的 PHP zip 函数使用了太多内存

另请检查此内容:https://www.airpair.com/php/fatal-error-allowed-memory-size

相关内容

  • 没有找到相关文章

最新更新