©
本文档使用
php.cn手册 发布
(PHP 5 >= 5.2.0, PECL zip >= 1.1.0)
ZipArchive::unchangeIndex — Revert all changes done to an entry at the given index
$index
)Revert all changes done to an entry at the given index.
index
Index of the entry.
成功时返回 TRUE
, 或者在失败时返回 FALSE
。
[#1] till at php dot net [2010-08-29 08:29:36]
Consider this example:
<?php
$zip = new ZipArchive;
$zip->open(...);
$zip->addFile('path/file', 'foo');
$zip->renameIndex(0, 'bar');
echo $zip->getNameIndex(0); // 'bar'
$zip->unchangeIndex(0);
echo $zip->getNameIndex(0); // 'false'
?>
Unless you call save() in between, the unchangeIndex() call reverts back to the initial state of the archive - where index '0' did not exist.
If you called save() after addFile() and then renamed the file, you would be able to revert/undo the name change.