如何使用PHP创建.gz文件?

时间:2011-05-20 14:30:16

标签: php gzip compression gz

我想使用PHP在我的服务器上压缩文件。有没有人有一个输入文件并输出压缩文件的例子?

9 个答案:

答案 0 :(得分:94)

此代码可以解决问题

// Name of the file we're compressing
$file = "test.txt";

// Name of the gz file we're creating
$gzfile = "test.gz";

// Open the gz file (w9 is the highest compression)
$fp = gzopen ($gzfile, 'w9');

// Compress the file
gzwrite ($fp, file_get_contents($file));

// Close the gz file and we're done
gzclose($fp);

答案 1 :(得分:80)

此处的其他答案在压缩过程中将整个文件加载到内存中,这会导致大文件上出现“内存不足”错误。下面的函数在大文件上应该更可靠,因为它以512kb的块读取和写入文件。

/**
 * GZIPs a file on disk (appending .gz to the name)
 *
 * From http://stackoverflow.com/questions/6073397/how-do-you-create-a-gz-file-using-php
 * Based on function by Kioob at:
 * http://www.php.net/manual/en/function.gzwrite.php#34955
 * 
 * @param string $source Path to file that should be compressed
 * @param integer $level GZIP compression level (default: 9)
 * @return string New filename (with .gz appended) if success, or false if operation fails
 */
function gzCompressFile($source, $level = 9){ 
    $dest = $source . '.gz'; 
    $mode = 'wb' . $level; 
    $error = false; 
    if ($fp_out = gzopen($dest, $mode)) { 
        if ($fp_in = fopen($source,'rb')) { 
            while (!feof($fp_in)) 
                gzwrite($fp_out, fread($fp_in, 1024 * 512)); 
            fclose($fp_in); 
        } else {
            $error = true; 
        }
        gzclose($fp_out); 
    } else {
        $error = true; 
    }
    if ($error)
        return false; 
    else
        return $dest; 
} 

答案 2 :(得分:20)

此外,您可以使用php的wrapperscompression ones。只需对代码进行最小的更改,您就可以在gzip,bzip2或zip之间切换。

$input = "test.txt";
$output = $input.".gz";

file_put_contents("compress.zlib://$output", file_get_contents($input));

compress.zlib://更改为 compress.zip://以进行zip压缩 (请参阅有关zip压缩的答案的评论)compress.bzip2://到bzip2压缩。

答案 3 :(得分:5)

简单的一行gzencode()

gzencode(file_get_contents($file_name));

答案 4 :(得分:3)

如果您只想解压缩文件,这样可以解决内存问题:

    $(".choice1").click(disappear);

答案 5 :(得分:1)

对许多人来说可能很明显,但如果系统上启用了任何程序执行功能(execsystemshell_exec),您可以使用它们简单地gzip文件。

exec("gzip ".$filename);

N.B。:确保在使用之前正确清理$filename变量,特别是如果它来自用户输入(但不仅仅是)。它可用于运行任意命令,例如包含my-file.txt && anothercommand(或my-file.txt; anothercommand)之类的内容。

答案 6 :(得分:0)

copy('file.txt','compress.zlib://'。'file.txt.gz'); 参见documentation

答案 7 :(得分:0)

这是改进版。我摆脱了所有嵌套的if / else语句,从而降低了循环复杂性,通过异常进行了更好的错误处理,而不是跟踪布尔错误状态,某种类型的提示,并且我在文件扩展名为gz的情况下提供帮助已经。就代码行而言,它花了更长的时间,但它更具可读性。

/**
 * Compress a file using gzip
 *
 * Rewritten from Simon East's version here:
 * https://stackoverflow.com/a/22754032/3499843
 *
 * @param string $inFilename Input filename
 * @param int    $level      Compression level (default: 9)
 *
 * @throws Exception if the input or output file can not be opened
 *
 * @return string Output filename
 */
function gzcompressfile(string $inFilename, int $level = 9): string
{
    // Is the file gzipped already?
    $extension = pathinfo($inFilename, PATHINFO_EXTENSION);
    if ($extension == "gz") {
        return $inFilename;
    }

    // Open input file
    $inFile = fopen($inFilename, "rb");
    if ($inFile === false) {
        throw new \Exception("Unable to open input file: $inFilename");
    }

    // Open output file
    $gzFilename = $inFilename.".gz";
    $mode = "wb".$level;
    $gzFile = gzopen($gzFilename, $mode);
    if ($gzFile === false) {
        fclose($inFile);
        throw new \Exception("Unable to open output file: $gzFilename");
    }

    // Stream copy
    $length = 512 * 1024; // 512 kB
    while (!feof($inFile)) {
        gzwrite($gzFile, fread($inFile, $length));
    }

    // Close files
    fclose($inFile);
    gzclose($gzFile);

    // Return the new filename
    return $gzFilename;
}

答案 8 :(得分:0)

任何人都需要压缩文件夹

function gzCompressFile($source, $level = 9)
{
    $tarFile = $source . '.tar';

    if (is_dir($source)) {
        $tar = new PharData($tarFile);
        $files = scandir($source);
        foreach ($files as $file) {
            if (is_file($source . '/' . $file)) {
                $tar->addFile($source . '/' . $file, $file);
            }
        }
    }

    $dest = $tarFile . '.gz';
    $mode = 'wb' . $level;
    $error = false;
    if ($fp_out = gzopen($dest, $mode)) {
        if ($fp_in = fopen($tarFile, 'rb')) {
            while (!feof($fp_in))
                gzwrite($fp_out, fread($fp_in, 1024 * 512));
            fclose($fp_in);
        } else {
            $error = true;
        }
        gzclose($fp_out);
        unlink($tarFile);
    } else {
        $error = true;
    }
    if ($error)
        return false;
    else
        return $dest;
}