在 php 中创建 zip 文件并在添加之前重命名每个文件

create zip file in php and rename each file before add

我正在使用下面的代码来创建 mp3 的 zip。我能够成功地使用它创建 zip。但是如何在制作 zip 之前重命名每个文件...

    # define file array
    $files = array(
      'http://google.com/images/logo.png',
      'http://upload.wikimedia.org/wikipedia/commons/thumb/5/53/Wikipedia-logo-en-              big.png/220px-Wikipedia-logo-en-big.png'
     );

     # create new zip opbject
     $zip = new ZipArchive();

     # create a temp file & open it
     $tmp_file = tempnam('.','');
     $zip->open($tmp_file, ZipArchive::CREATE);

     # loop through each file
     foreach($files as $file){

        # download file
        $download_file = file_get_contents($file);

        #add it to the zip
        $zip->addFromString(basename($file),$download_file);

    }

    # close zip
    $zip->close();

    # send the file to the browser as a download
    header('Content-disposition: attachment; filename=download.zip');
    header('Content-type: application/zip');
    readfile($tmp_file);

您可以在 addFromString 方法行之后使用 renameName

$zip->addFromString(basename($file), $download_file);
$zip->renameName(basename($file), 'nicename.mp3');

我这样做了并且成功了。希望这会有所帮助。

$filename = "New_File_Name.pdf";
$zip->addFromString( $filename,  file_get_contents($path));