// ZIP-Archive mit Passwortschutz erstellen open($create,ZipArchive::CREATE)): if(!empty($password)): $zip->setPassword($password); endif; foreach($files as $file): $zip->addFile(realpath($file),$file); if(!empty($password)): $zip->setEncryptionName($file, ZipArchive::EM_AES_256); endif; print($file . " - Datei HinzugefĆ¼gt ". PHP_EOL); endforeach; $zip->close(); endif; return file_exists($create); } if(zipFolder('bilder','bilder-archive-pwd','passwort')): print("ZIP File Erstellt"); endif;