我想在PHP中压缩.txt文件,同时保持文件扩展名.当我解压缩.gz文件时,.gz文件中的扩展名(.txt)被删除. (test.txt变成-> test)
这是我的将test.txt压缩为.gz文件的PHP代码的示例:
<?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限制?
解决方法:
通常,在解压缩时,gzip不会在gzip标头中使用名称,而且您也不会在标头中存储名称.它只是从文件名中删除.gz.您需要将文件命名为test.txt.gz才能将其解压缩为test.txt.