我有 zip 存档,解压缩后我需要检查 moduleConfig.xml 是否存在于 zip 存档中。我怎么能做到这一点。
我试试这个
$zip = new ZipArchive();
if($zip->open('test.zip') === TRUE )
{
if(file_exists($zip->getFromName('moduleConfig.xml')))
{
echo "Config exists";
// Do somthing
}
}
else {
echo 'Failed code:'. $res;
}