ZipArchive::renameName
(PHP 5 >= 5.2.0, PHP 7, PHP 8, PECL zip >= 1.5.0)
ZipArchive::renameName — Renames an entry defined by its name
说明
Renames an entry defined by its name.
参数
name
-
Name 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->renameName('currentname.txt','newname.txt');
$zip->close();
} else {
echo 'failed, code:' . $res;
}
?>
+添加备注
用户贡献的备注 1 note
mumpitz89 at gmx dot net ¶
9 years ago
When you rename a file in an archive using the function above and the target file name already exists, the function will return FALSE as a result.
备份地址:http://www.lvesu.com/blog/php/ziparchive.renamename.php