PHP 8.3.4 Released!

ZipArchive::renameIndex

(PHP 5 >= 5.2.0, PHP 7, PHP 8, PECL zip >= 1.5.0)

ZipArchive::renameIndexПереименовывает элемент по его индексу

Описание

public ZipArchive::renameIndex(int $index, string $new_name): bool

Переименовывает элемент по его индексу.

Список параметров

index

Индекс элемента для переименования.

new_name

Новое имя.

Возвращаемые значения

Возвращает true в случае успешного выполнения или false в случае ошибки.

Примеры

Пример #1 Переименование одного элемента

<?php
$zip
= new ZipArchive;
$res = $zip->open('test.zip');
if (
$res === TRUE) {
$zip->renameIndex(2,'newname.txt');
$zip->close();
} else {
echo
'ошибка с кодом:' . $res;
}
?>
add a note

User Contributed Notes 2 notes

up
1
Jonathan Holvey
7 years ago
To rename a folder, you must replace the folder name in the path of every file that it contains.
up
0
troy_rudolph at bridge360 dot com
7 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.
To Top