Warning: file_put_contents(): Only -1 of 62 bytes written, possibly out of free disk space in /var/www/html/index.php on line 3

Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/index.php:3) in /var/www/html/cache.php on line 23

Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/index.php:3) in /var/www/html/cache.php on line 24

Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/index.php:3) in /var/www/html/cache.php on line 25
zip_read ZipArchive::addFile Zip PHP Manual ZipArchive::addEmptyDir (No version information available, might be only in CVS) — Add a new directory 설명 bool ( string $dirname ) Adds an empty th...
Forum und email

ZipArchive::addEmptyDir

(No version information available, might be only in CVS)

ZipArchive::addEmptyDir — Add a new directory

설명

bool ZipArchive::addEmptyDir ( string $dirname )

Adds an empty directory in the archive.

매개변수

dirname

The directory to add.

반환값

성공할 경우 TRUE를, 실패할 경우 FALSE를 반환합니다.

예제

Example#1 Create a new directory in an archive

<?php
$zip 
= new ZipArchive;
if (
$zip->open('test.zip') === TRUE) {
    if(
$zip->addEmptyDir('newDirectory')) {
        echo 
'Created a new root directory';
    } else {
        echo 
'Could not create the directory';
    }
    
$zip->close();
} else {
    echo 
'failed';
}
?>