создать zip-файл в php и переименовать каждый файл перед добавлением

Я использую ниже код для создания zip mp3. Я могу создать 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); 

Solutions Collecting From Web of "создать zip-файл в php и переименовать каждый файл перед добавлением"