在线文档教程
PHP
压缩 | Compression

ZipArchive::renameIndex

ZipArchive::renameIndex

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

ZipArchive::renameIndex - 重命名由其索引定义的条目

描述

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

重命名由其索引定义的条目。

参数

index

要重命名的条目的索引。

newname

新名字。

返回值

成功时返回TRUE或失败时返回FALSE

示例

Example #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; } ?>

← ZipArchive::open

ZipArchive::renameName →