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


PHP ZipArchive::addEmptyDir()用法及代码示例


ZipArchive::addEmptyDir() 函数是 PHP 中的内置函数,用于添加新目录。

用法:

bool ZipArchive::addEmptyDir( string $dirname , int $flags = 0 )

Parameters: 该方法接受如上所述和如下所述的两个参数:

  • $dirname:它指定要添加的目录名称。
  • $flags: 它指定由 ZipArchive::FL_ENC_GUESS、ZipArchive::FL_ENC_UTF_8、ZipArchive::FL_ENC_CP437 组成的位掩码。

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

示例 1:

PHP


<?php
// Create an object of ZipArchive class
$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';
}
?>

输出:

Added an empty directory

示例 2:

PHP


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

输出:添加到 zip 文件中的目录。您可以打开 zip 文件来检查添加的目录列表。

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



相关用法


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