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