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


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


ZipArchive::count() 函数是 PHP 中的内置函数,用于计算 zip 存档中的文件数量。

用法:

int ZipArchive::count()

参数:该函数不接受任何参数。

返回值:此函数返回 zip 存档中的文件数。

示例 1:以下代码演示了 zip 文件的总数。

PHP


<?php
    // Create a new ZipArchive object
    $zip = new ZipArchive;
    // Check for opening the zip file
    if ($zip->open('Geeks.zip')) 
    {            
        // If zip file is open then add an
        // empty directory "GeeksforGeeks"
        if($zip->addEmptyDir('GeeksforGeeks'));
             
        echo 'Total files/directory: ' . $zip->count();
             
        // Close the zip file
        $zip->close();
    }
    // If zip file is not open/exist
    else
    {
        echo 'Failed to open zip file';
    }
?>

输出:

示例 2:以下代码显示了添加代码中给出的额外 3 个文件后的文件总数。

PHP


<?php
    // Create a new ZipArchive object
    $zip = new ZipArchive;
    // Check for opening the zip file
    if ($zip->open('Geeks.zip', ZipArchive::CREATE)) {
         
        echo 'Total number of files: '
              . $zip->count() . '<br>';
        // Create new txt file and
        // add String to the file
        $zip->addFromString(
            'GFG1.txt', 
            'Welcome to GeeksforGeeks'
        );
        $zip->addFromString(
            'GFG2.txt', 
            'A computer science portal'
        );
        $zip->addFromString(
            'GFG3.txt', 
            'Welcome to GeeksforGeeks'
        );
         
        echo 'Total files after adding new files: '
            . $zip->count();
         
        // Close the zip file
        $zip->close();
    }
    // If zip file is not open/exist
    else {
        echo 'Failed to open zip file';
    }
?>

输出:

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



相关用法


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