略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: ZipArchive::renameIndex

2024-04-28

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.

参数

index

Index of the entry to rename.

new_name

New name.

返回值

成功时返回 true, 或者在失败时返回 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;
}
?>
add a noteadd a note

User Contributed Notes 2 notes

up
1
Jonathan Holvey
5 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
6 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.

官方地址:https://www.php.net/manual/en/ziparchive.renameindex.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3