Forum und email

ZipArchive::renameIndex

(No version information available, might be only in CVS)

ZipArchive::renameIndex — Renames an entry defined by its index

Descrição

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

Renames an entry defined by its index.

Parâmetros

index

Index of the entry to rename.

newname

New name.

Valor Retornado

Retorna TRUE em caso de sucesso ou FALSE em falhas.

Exemplos

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