我有一个脚本在压缩文件夹“输出”的内容时被调用,但是当我尝试加载位于文件夹 www / projectname 中的文件夹“Outpup”的内容时,我压缩根目录 C 中的文件:\
我的脚本
$rootpath="./Output";
$destinazione="./Output/lista.zip";
Zip($rootpath,$destinazione);
功能邮编
function Zip($source, $destination)
{
if (!extension_loaded('zip') || !file_exists($source)) {
return false;
}
$zip = new ZipArchive();
if (!$zip->open($destination, ZIPARCHIVE::CREATE)) {
return false;
}
$source = str_replace('\\', '/', realpath($source));
if (is_dir($source) === true)
{
$files = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($source), RecursiveIteratorIterator::SELF_FIRST);
foreach ($files as $file)
{
$file = str_replace('\\', '/', $file);
// Ignore "." and ".." folders
if( in_array(substr($file, strrpos($file, '/')+1), array('.', '..')) )
continue;
$file = realpath($file);
if (is_dir($file) === true)
{
$zip->addEmptyDir(str_replace($source . '/', '', $file . '/'));
}
else if (is_file($file) === true)
{
$zip->addFromString(str_replace($source . '/', '', $file), file_get_contents($file));
}
}
}
else if (is_file($source) === true)
{
$zip->addFromString(basename($source), file_get_contents($source));
}
return $zip->close();
}
我只需要压缩文件夹“输出”的内容,但在 zip 中我得到以下嵌套文件夹
c:\
└─ Program Files (x86)
└─ www
└─ Separalista
└─output
├─ folder1
│ └─ file.csv
└─ folder2
└─ file.csv
我想在 zip 文件中找到只有子文件夹“输出”
output
├─ folder1
│ └─ file.csv
└─ folder2
└─ file.csv
谢谢大家