當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。