php8.5
Home/ Manual/ zip / ziparchive/ ZipArchive::renameIndex

ZipArchive::renameIndex

PHP function Edit on GitHub ✎

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

Renames an entry defined by its index

Description

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

Renames an entry defined by its index.

Parameters

index

Index of the entry to rename.

new_name

New name.

Return Values

Success

Examples

Rename one entry

php
<?php
$zip = new ZipArchive;
$res = $zip->open('test.zip');
if ($res === TRUE) {
    $zip->renameIndex(2,'newname.txt');
    $zip->close();
} else {
    echo 'failed, code:' . $res;
}
?>

Source: reference/zip/ziparchive/renameindex.xml · from the official PHP manual (php/doc-en)