我需要读取 zip 文件中单个文件“test.txt”的内容。整个 zip 文件是一个非常大的文件(2gb)并且包含很多文件(10,000,000),因此提取整个文件对我来说不是一个可行的解决方案。如何读取单个文件?
问问题
28201 次
2 回答
60
尝试使用zip://
包装器:
$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;
于 2012-05-02T19:15:30.423 回答
3
请注意@Rocket-Hazmatfopen
解决方案如果 zip 文件受密码保护,可能会导致无限循环,因为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/
在末尾使用正斜杠传递它。
于 2020-02-08T03:06:53.267 回答