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

我使用下面的代码来创建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');

相关文章

统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
前言 之前做了微信登录,所以总结一下微信授权登录并获取用户...
FastAdmin是我第一个接触的后台管理系统框架。FastAdmin是一...
之前公司需要一个内部的通讯软件,就叫我做一个。通讯软件嘛...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...