gpt4 book ai didi

php - 使用 PHP 压缩的文件在提取后生成 cpgz 文件

转载 作者:可可西里 更新时间:2023-11-01 13:55:34 26 4
gpt4 key购买 nike

我正在用 php 压缩文件夹和文件,但是当我尝试打开 zip 文件时,我得到的是一个 cpgz 文件。提取该文件后,我得到另一个 zip 文件。它的作用是基本扫描当前文件夹以查找要压缩的文件和文件夹。这是我使用的代码:

function Zip($source, $destination)
{
if (!extension_loaded('zip') || !file_exists($source)) {
return false;
}

$zip = new ZipArchive();
if (!$zip->open($destination, ZIPARCHIVE::CREATE)) {
return false;
}

$source = str_replace('\\', '/', realpath($source));

if (is_dir($source) === true)
{
$files = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($source), RecursiveIteratorIterator::SELF_FIRST);

foreach ($files as $file)
{
$file = str_replace('\\', '/', realpath($file));

if (is_dir($file) === true)
{
$zip->addEmptyDir(str_replace($source . '/', '', $file . '/'));
}
else if (is_file($file) === true)
{
$zip->addFromString(str_replace($source . '/', '', $file), file_get_contents($file));
}
}
}
else if (is_file($source) === true)
{
$zip->addFromString(basename($source), file_get_contents($source));
}

return $zip->close();
}


if($_GET["archive"]== 'true'){
$date = date("Ymd_Hi");
$dir = dirname(__FILE__);
$filename = $date.".zip";

Zip(getcwd(), $filename);

header("Content-disposition: attachment; filename=$filename");
header('Content-type: application/zip');
readfile($filename);
unlink($filename);
}

最佳答案

我刚遇到完全相同的问题,了解到这两个函数调用可以提供帮助:

header("Content-disposition: attachment; filename=$filename");
header('Content-type: application/zip');

// Add these
ob_clean();
flush();

readfile($filename);
unlink($filename);

通常设置 Content-Disposition 和 Content-Length 就足够了,但是当在 PHP 中设置 header 之前意外发送输出时,刷新 PHP 输出缓冲区和底层输出缓冲区(Apache 等)会有所帮助。

在我的例子中,注释掉用于调试的 header() 和 readfile() 调用有助于查看,警告是在文件发送之前输出的。

希望对以后的人有所帮助。

关于php - 使用 PHP 压缩的文件在提取后生成 cpgz 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11454158/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com