Forum und email

ZipArchive::renameIndex

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

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

설명

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

Renames an entry defined by its index.

매개변수

index

Index of the entry to rename.

newname

New name.

반환값

성공할 경우 TRUE를, 실패할 경우 FALSE를 반환합니다.

예제

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