0

我需要在 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 的根目录中?

4

1 回答 1

1

使用第二个参数ZipArchive::addFile()来指定文件出现在档案中的文件名。basename($file)是一个很好的候选人。

于 2013-07-11T13:11:41.387 回答