PHP8 ZipArchive::setArchiveComment

2024-02-27 11:09 更新

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

ZipArchive::setArchiveComment — 设置ZIP存档的注释

说明

public ZipArchive::setArchiveComment(string $comment): bool

设置ZIP存档的注释。

参数 

comment

注释的内容。

返回值 

成功时返回 true, 或者在失败时返回 false。

示例 

示例 #1 创建存档并设置注释

<?php
$zip = new ZipArchive;
$res = $zip->open('test.zip', ZipArchive::CREATE);
if ($res === TRUE) {
    $zip->addFromString('test.txt', 'file content goes here');
    $zip->setArchiveComment('new archive comment');
    $zip->close();
    echo 'ok';
} else {
    echo 'failed';
}
?>


以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号