ZipArchive::setCommentIndex

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

ZipArchive::setCommentIndex设置由其索引定义的条目的注释

说明

public ZipArchive::setCommentIndex(int $index, string $comment): bool

设置由其索引定义的条目的注释。

参数

index

条目的索引。

comment

注释的内容。

返回值

成功时返回 true,失败时返回 false

范例

范例 #1 打开一个存档并为一个条目设置注释

<?php
$zip
= new ZipArchive;
$res = $zip->open('test.zip');
if (
$res === TRUE) {
$zip->setCommentIndex(2, 'new entry comment');
$zip->close();
echo
'ok';
} else {
echo
'failed';
}
?>
添加备注

用户贡献的笔记

此页没有用户贡献的笔记。
To Top