我需要读取一个文件的内容“的test.txt”,一个zip文件里。 整个压缩文件是一个非常大的文件(2GB),并含有大量的文件(10,000,000),因此提取整个事情不是我一个可行的解决方案。 我怎样才能读取一个文件?
Answer 1:
尝试使用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;
文章来源: How to read a single file inside a zip archive