从php://读取zip存档

时间:2015-11-19 08:05:53

标签: php ziparchive

我从webservice(WSDL)收到大对象。其中一个位置是zip文件内容存储为base64字符串。我需要从这个zip中读取文件名和内容。

我写了这个:

$ePackageFile = $ePackage->ePackageFile;
$attachment = $this->mapper->mapEPackageFileData((array)$ePackageFile, false);

$limitMBs = 20 * 1024 * 1024;//20MB LIMIT !
$fp = fopen("php://temp/maxmemory:$limitMBs", 'r+');

fwrite($fp, base64_decode($attachment['attachment_fileContent']));

$zip = new ZipArchive;
$handler = $zip->open("php://temp");
if($handler === FALSE)
    return array('status'=>false, 'result'=>'failed to get stream');

$i=0;
$out = array();
while (($file = $zip->getNameIndex($i)) && $file !== false) {
    $out[] = array('filename' => $zip->getNameIndex($i), 'content' => $zip->getFromIndex($i));
    $i++;
}
$zip->close();

但我仍然有“警告:ZipArchive :: getNameIndex():无效或整体化的Zip对象......”

我还使用以下方式检查了文件:

$fp = fopen('test.zip','a+');
fwrite($fp, base64_decode($attachment['attachment_fileContent']));
fclose($fp);

然后使用KEKA(成功)提取它。

你能帮助我使用包装器阅读内容吗?

编辑: 我收到错误代码11(无法打开文件)。

1 个答案:

答案 0 :(得分:0)

我发现了这个: Extract a file from a ZIP string

我必须承认,可能无法从php://中读取问题

我通过创建临时文件解决了我的问题。