ZipArchive::renameIndex
(PHP 5 >= 5.2.0, PHP 7, PHP 8, PECL zip >= 1.5.0)
ZipArchive::renameIndex — Renames an entry defined by its index
说明
Renames an entry defined by its index.
参数
index
-
Index of the entry to rename.
new_name
-
New name.
示例
示例 #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;
}
?>
+添加备注
用户贡献的备注 2 notes
Jonathan Holvey ¶
8 years ago
To rename a folder, you must replace the folder name in the path of every file that it contains.
troy_rudolph at bridge360 dot com ¶
8 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.
备份地址:http://www.lvesu.com/blog/php/ziparchive.renameindex.php