我在一个名为test.txt
的压缩文件中有一个简单的test.zip
文件。 test.txt文件只包含字符串Hello@2015
。现在我需要通过PHP读取文件,如
<?php
$handle = fopen('test.zip#test.txt', 'r');
$result = '';
while (!feof($handle)) {
$result .= fread($handle, 8192);
}
fclose($handle);
echo $result;
但是我收到了这个警告 警告:fopen(test.zip#test.txt):无法打开流:第2行的C:\ wamp \ www \ ZipRead \ index.php中没有此类文件或目录
警告:feof()要求参数1为资源,第4行的C:\ wamp \ www \ ZipRead \ index.php中给出布尔值
警告:feof()要求参数1为资源,第4行的C:\ wamp \ www \ ZipRead \ index.php中给出布尔值
你可以告诉我我做错了什么吗?