我需要在zip文件中读取单个文件“test.txt”的内容。整个zip文件是一个非常大的文件(2gb),包含很多文件(10,000,000),因此提取整个文件对我来说不是一个可行的解决方案。我怎样才能阅读单个文件?
答案 0 :(得分:52)
尝试使用zip://
wrapper:
$handle = fopen('zip://test.zip#test.txt', 'r');
$result = '';
while (!feof($handle)) {
$result .= fread($handle, 8192);
}
fclose($handle);
echo $result;
您也可以使用file_get_contents
:
$result = file_get_contents('zip://test.zip#test.txt');
echo $result;
答案 1 :(得分:2)
请注意,如果使用密码保护zip文件,@ Rocket-Hazmat fopen
解决方案可能会导致无限循环,因为fopen
将失败,而feof
将始终为true错误发生。
您可能希望将其更改为
$handle = fopen('zip://file.zip#file.txt', 'r');
$result = '';
if ($handle) {
while (!feof($handle)) {
$result .= fread($handle, 8192);
}
fclose($handle);
}
echo $result;
这解决了无限循环问题,但是如果您的zip文件受密码保护,那么您可能会看到类似
警告:file_get_contents(zip://file.zip#file.txt):打开失败 流:操作失败
但是有解决方案
从PHP 7.2开始,添加了对加密档案的支持。
因此您可以通过这种方式实现 file_get_contents
和 fopen
$options = [
'zip' => [
'password' => '1234'
]
];
$context = stream_context_create($options);
echo file_get_contents('zip://file.zip#file.txt', false, $context);
但是,一种更好的解决方案是在使用文件之前先检查文件是否存在,而不必担心加密档案的存在 ZipArchive
$zip = new ZipArchive;
if ($zip->open('file.zip') !== TRUE) {
exit('failed');
}
if ($zip->locateName('file.txt') !== false) {
echo 'File exists';
} else {
echo 'File does not exist';
}
这将起作用(无需知道密码)
注意:要使用
locateName
方法定位文件夹,您需要像folder/
一样将其传递给 最后是正斜杠。