ZipArchive::renameIndex

(PHP 5 >= 5.2.0, PECL zip >= 1.5.0)

ZipArchive::renameIndexRenames an entry defined by its index

Description

bool ZipArchive::renameIndex ( int $index , string $newname )

Renames an entry defined by its index.

Parameters

index

Index of the entry to rename.

newname

New name.

Return Values

Returns TRUE on success or FALSE on failure.

Examples

Example #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;
}
?>

Коментарии

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.
2016-06-10 20:02:35
http://php5.kiev.ua/manual/ru/ziparchive.renameindex.html
Автор:
To rename a folder, you must replace the folder name in the path of every file that it contains.
2016-12-05 11:40:33
http://php5.kiev.ua/manual/ru/ziparchive.renameindex.html

    Поддержать сайт на родительском проекте КГБ