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.
(PHP 5 >= 5.2.0, PHP 7, PHP 8, PECL zip >= 1.5.0)
ZipArchive::renameName — Переименовывает элемент по его имени
Переименовывает элемент, заданный по имени.
name
Имя элемента для переименования.
new_name
Новое имя.
Функция возвращает true
в случае успешного выполнения или false
, если возникла ошибка.
Пример #1 Переименование одного элемента
<?php
$zip = new ZipArchive;
$res = $zip->open('test.zip');
if ($res === TRUE) {
$zip->renameName('currentname.txt','newname.txt');
$zip->close();
} else {
echo 'ошибка с кодом:' . $res;
}
?>
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.