web-dev-qa-db-ja.com

PHPを使用して.gzファイルを作成するにはどうすればよいですか?

PHPを使用して、サーバー上のファイルをgzip圧縮したいと思います。ファイルを入力して圧縮ファイルを出力する例はありますか?

51
AlBeebe

ここでの他の回答は、圧縮中にファイル全体をメモリにロードします。これにより、大きなファイルで「out of memory」エラーが発生します。以下の関数は、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; 
} 
83
Simon East

このコードはトリックを行います

// 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);
96
AlBeebe

また、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圧縮。

20

gzencode() のあるシンプルなライナー

gzencode(file_get_contents($file_name));
5
dtbarne

ファイルを解凍するだけの場合、これは機能し、メモリの問題は発生しません。

$bytes = file_put_contents($destination, gzopen($gzip_path, r));
3
Frank Carey

おそらく多くの人にとっては明らかですが、システムでプログラム実行機能のいずれかが有効になっている場合(execsystemShell_exec)、それらを使用して単純にgzipファイル。

exec("gzip ".$filename);

N.B.:使用する前に、$filename変数を適切にサニタイズするようにしてください。特に、それがユーザー入力に由来する場合(だけでなく)。たとえば、my-file.txt && anothercommand(またはmy-file.txt; anothercommand)のようなものを含めることにより、任意のコマンドを実行するために使用できます。

1
Niavlys

copy( 'file.txt'、 'compress.zlib://'。 'file.txt.gz'); ドキュメント を参照してください

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;
}
0
Gerben