update : 2015.11.03
php.shukuma.com

검색:
 
 
Renames an entry defined by its index

ZipArchive::renameIndex

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

ZipArchive::renameIndexRenames 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;
}
?>