When you rename a file in an archive using the function above and the target file name already exists, the function will return FALSE as a result.
(PHP 5 >= 5.2.0, PHP 7, PHP 8, PECL zip >= 1.5.0)
ZipArchive::renameName — Renomme une entrée définie par son nom
Renomme une entrée définie par son nom.
name
Nom de l'entrée à renommer
new_name
Nouveau nom
Cette fonction retourne true
en cas de succès ou false
si une erreur survient.
Exemple #1 Renommer une entrée
<?php
$zip = new ZipArchive;
$res = $zip->open('test.zip');
if ($res === TRUE) {
$zip->renameName('currentname.txt','newname.txt');
$zip->close();
} else {
echo 'échec, code:' . $res;
}
?>
When you rename a file in an archive using the function above and the target file name already exists, the function will return FALSE as a result.