我在两种不同的环境中尝试过,一种有效,一种无效。我要做的就是打开 zip,但目前我调用其中一个函数 zip_open或new ZipArchive()代码会停止,退出时不会出现错误。可能是什么问题呢 ?
$zip = file_get_contents($url, false, $context);
file_put_contents($zipfile, $zip);
chmod($zipfile, 0775);
$zip = new ZipArchive();
$zip->open($zipfile);