ZipArchive::renameIndex

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

ZipArchive::renameIndexBenennt einen durch seinen Index bestimmten Eintrag um

Beschreibung

public ZipArchive::renameIndex ( int $index , string $new_name ) : bool

Benennt einen durch seinen Index bestimmten Eintrag um.

Parameter-Liste

index

Index des umzubenennenden Eintrags.

new-name

Neuer Name.

Rückgabewerte

Gibt bei Erfolg true zurück. Im Fehlerfall wird false zurückgegeben.

Beispiele

Beispiel #1 Einen Eintrag umbenennen

<?php
$zip 
= new ZipArchive;
$res $zip->open('test.zip');
if (
$res === TRUE) {
    
$zip->renameIndex(2,'neuer_name.txt');
    
$zip->close();
} else {
    echo 
'Fehler, Code:' $res;
}
?>
add a note add a note

User Contributed Notes 2 notes

up
1
troy_rudolph at bridge360 dot com
7 years ago
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.
up
0
Jonathan Holvey
7 years ago
To rename a folder, you must replace the folder name in the path of every file that it contains.
To Top