PHPを使用して、サーバー上のファイルをgzip圧縮したいと思います。ファイルを入力して圧縮ファイルを出力する例はありますか?
ここでの他の回答は、圧縮中にファイル全体をメモリにロードします。これにより、大きなファイルで「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;
}
このコードはトリックを行います
// 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);
また、phpの wrappers 、 compression ones を使用できます。コードを少し変更するだけで、gzip、bzip2、またはZipを切り替えることができます。
$input = "test.txt";
$output = $input.".gz";
file_put_contents("compress.zlib://$output", file_get_contents($input));
変化する compress.zlib://
に (Zip圧縮に関するこの回答へのコメントを参照)、またはcompress.Zip://
Zip圧縮用compress.bzip2://
bzip2圧縮。
gzencode() のあるシンプルなライナー
gzencode(file_get_contents($file_name));
ファイルを解凍するだけの場合、これは機能し、メモリの問題は発生しません。
$bytes = file_put_contents($destination, gzopen($gzip_path, r));
おそらく多くの人にとっては明らかですが、システムでプログラム実行機能のいずれかが有効になっている場合(exec
、system
、Shell_exec
)、それらを使用して単純にgzip
ファイル。
exec("gzip ".$filename);
N.B.:使用する前に、$filename
変数を適切にサニタイズするようにしてください。特に、それがユーザー入力に由来する場合(だけでなく)。たとえば、my-file.txt && anothercommand
(またはmy-file.txt; anothercommand
)のようなものを含めることにより、任意のコマンドを実行するために使用できます。
copy( 'file.txt'、 'compress.zlib://'。 'file.txt.gz'); ドキュメント を参照してください
これが改善されたバージョンです。入れ子になった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;
}