I have tried to rename folders inside the zip file using ZipArchive::renameIndex() and ZipArchive::renameName(). Neither was successful. I believe that this is not a bug and wanted to document it.
(PHP 5 >= 5.2.0, PHP 7, PHP 8, PECL zip >= 1.5.0)
ZipArchive::renameIndex — İndisi belirtilen girdinin ismini değiştirir
İndisi belirtilen girdinin ismini değiştirir.
indis
İsmi değiştirilecek girdinin indisi.
yeni_isim
Girdinin yeni ismi.
Örnek 1 - Bir girdinin ismini değiştirmek
<?php
$zip = new ZipArchive;
$res = $zip->open('test.zip');
if ($res === TRUE) {
$zip->renameIndex(2,'newname.txt');
$zip->close();
} else {
echo 'olmadı, kod:' . $res;
}
?>
I have tried to rename folders inside the zip file using ZipArchive::renameIndex() and ZipArchive::renameName(). Neither was successful. I believe that this is not a bug and wanted to document it.
To rename a folder, you must replace the folder name in the path of every file that it contains.