当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP ZipArchive getArchiveComment()用法及代码示例


ZipArchive::getArchiveComment() 函数是 PHP 中的内置函数,用于返回 zip 存档注释。

用法:

string|false ZipArchive::getArchiveComment(int $flags = 0)

参数:该函数接受如下所述的单个参数。

  • $flag:此参数保存标志,如果该标志设置为 ZipArchive::FL_UNCHANGED,则返回未更改的存档注释。

返回值:此函数在失败时返回 zip 存档注释或“false”。

示例 1:下面的代码演示了getArchiveComment()函数。

PHP


<?php
    // Create a new ZipArchive object
    $zip = new ZipArchive;
    // Check for opening the zip file
    if ($zip->open('Geeks.zip', ZipArchive::CREATE))
    {
         
        // Get the archive comment
        var_dump($zip->getArchiveComment());
         
        // Close the zip file
        $zip->close();
    }
    // If zip file is not open/exist
    else {
        echo 'Failed to open zip file';
    }
?>

输出:

string(0) ""

示例 2:下面的代码演示了setArchiveComment()函数设置给定的字符串,如输出所示。

PHP


<?php
    // Create a new ZipArchive object
    $zip = new ZipArchive;
    // Check for opening the zip file
    if ($zip->open('Geeks.zip', ZipArchive::CREATE)) {
         
        $zip->setArchiveComment('GeeksforGeeks Archive Comment');
         
        var_dump($zip->getArchiveComment());
         
        // Close the zip file
        $zip->close();
    }
    // If zip file is not open/exist
    else
    {
        echo 'Failed to open zip file';
    }
?>

输出:

string(29) "GeeksforGeeks Archive Comment"

参考: https://www.php.net/manual/en/ziparchive.getarchivecomment.php



相关用法


注:本文由纯净天空筛选整理自vkash8574大神的英文原创作品 PHP ZipArchive getArchiveComment() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。