我需要在 php 中创建一个 zip 文件,其中包括一些 doc 和 pdf 文件。我使用在网上找到的功能:
function create_zip($files = array(),$destination = '',$overwrite = true) {
//if the zip file already exists and overwrite is false, return false
if(file_exists($destination) && !$overwrite) { return false; }
//vars
$valid_files = array();
//if files were passed in...
if(is_array($files)) {
//cycle through each file
foreach($files as $file) {
//make sure the file exists
if(file_exists($file)) {
$valid_files[] = $file;
}
}
}
//if we have good files...
if(count($valid_files)) {
$zip = new ZipArchive();
if($zip->open($destination,$overwrite ? ZIPARCHIVE::OVERWRITE : ZIPARCHIVE::CREATE) !== true) {
return false;
}
foreach($valid_files as $file)
$zip->addFile($file,$file);
$zip->close();
return file_exists($destination);
}
else
return false;
}
问题是,如果要包含在 zip 中的文件路径是 path/to/file/filename.pdf,当我下载并打开 zip 时,我会将 filename.pdf 包含在 path/to/file 文件夹中。如何将所有文件放在 zip 的根目录中?