我想.txt
在保持文件扩展名的同时用 PHP 压缩文件。当我解压缩.gz
文件时,文件中的扩展名 ( .txt
).gz
被删除。(test.txt
变成 -> test
)
这是我的 PHP 代码压缩test.txt
成.gz
文件的示例:
<?php
// Name of the file we are compressing
$file = "test.txt";
// Name of the gz file we are 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 are done
gzclose($fp);
?>
有人知道我做错了什么吗?或者这是因为gzip
limations?