我有一个 URL,可在请求时开始下载 .zip 文件。URL 看起来像这样: http ://website.nl/servlets/ogexport?koppeling=WEBSITE&user= &password= &og=BOG&kantoor=**
如何确保在该过程中生成的 zip 文件在我的 PHP 解压缩脚本中使用?
$file = 'testing.zip';
$path = pathinfo(realpath($file), PATHINFO_DIRNAME).'/xml';
// unzippen
$zip = new ZipArchive;
$res = $zip->open($file);
if ($res === TRUE) {
$zip->extractTo($path);
$zip->close();
echo 'success';
// debug("ZIP bestand uitgepakt", 2);
} else {
// debug("ZIP niet uitgepakt", 2);
echo 'something went wrong.';
}
$xml_path = $path."/testing.xml";
echo $file.'<br>';
echo $xml_path;
希望得到帮助!