= 5.2.0, PHP 7, PHP 8, PECL zip >= 1.5.0)ZipArchive::renameIndex — Renames an entry defined by its index說明public ZipArc">

ZipArchive::renameIndex

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

ZipArchive::renameIndexRenames an entry defined by its index

說明

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

Renames an entry defined by its index.

參數(shù)

index

Index of the entry to rename.

new_name

New name.

返回值

成功時(shí)返回 true, 或者在失敗時(shí)返回 false

范例

示例 #1 Rename one entry

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