解压zip压缩包:使用自带扩展如下代码:
$file = "/opt/data/upload/testfile.zip";
$outPath = "/opt/data/upload/testfile";
$zip = new ZipArchive();
$openRes = $zip->open($file);
if ($openRes === TRUE) {
$zip->extractTo($outPath);
$zip->close();
}
在使用7z修改zip文件内容路径后,依然无法进行目录穿越。