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


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


PHP ZipArchive::close() 函数是 PHP 中的内置函数,用于关闭打开的存档文件并保存更改。对 zip 文件执行所有操作后调用此函数。如果 zip 存档不包含任何文件,则默认情况下 zip 文件将被删除。

用法:

bool ZipArchive::close()

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

返回值:该函数成功时返回“true”,失败时返回“false”。

示例 1:在这个例子中,我们将说明邮编rchive::close()函数。首先,我们将打开 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 'Added an empty directory'; 
        }  
        else 
        { 
            echo 'Directory can not created'; 
        } 
          
        // Close the zip file 
        $zip->close(); 
    } 
    // If zip file is not open/exist 
    else { 
        echo 'Failed to open zip file'; 
    } 
?>

输出:

示例 2:在此示例中,我们将打开 zip 存档并添加一个包含一些字符串内容的文件,执行操作后,我们将使用邮编rchive::close()函数来关闭文件。

PHP


<?php 
    // Create a new ZipArchive class 
    $zip = new ZipArchive; 
  
    // Open a zip file 
    $file = $zip->open('geeks.zip', ZipArchive::CREATE); 
  
    // If zip file is open 
    if ($file === TRUE) { 
  
        // Create new txt file and 
        // add String to the file 
        $zip->addFromString( 
            'GFG.txt',  
            'Welcome to GeeksforGeeks'
        ); 
  
        // Close the opened file 
        $zip->close(); 
        echo 'File Added Successfully.'; 
    } else { 
        echo 'Failed to Adding file.'; 
    } 
?>

输出:

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



相关用法


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