6

フォルダーとファイルを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);
}
4

1 に答える 1

9

私はまったく同じ問題を抱えていましたが、次の 2 つの関数呼び出しが役立つことを知りました。

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 でヘッダーが設定される前に誤って出力が送信された場合は、PHP の出力バッファーとその下にある出力バッファー (Apache など) をフラッシュすると役立ちます。

私の場合、デバッグのために header() と readfile() の呼び出しをコメントアウトすると、ファイルが送信される前に警告が出力されていることがわかりました。

将来誰かに役立つことを願っています。

于 2014-10-07T09:50:41.287 に答える