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';
}
?>