(no version information, might be only in CVS)
Renames an entry defined by its index.
Index of the entry to rename.
New name.
Restituisce TRUE in caso di successo, FALSE in caso di fallimento.
Esempio 1. Rename one entry
<?php$zip = new ZipArchive;$res = $zip->open('test.zip')if ($res === TRUE) { $zip->renameIndex(2,'newname.txt'); $zip->close();} else { echo 'failed, code:' . $res;}?>