PHP8 PharData::addEmptyDir
(PHP 5 >= 5.3.0, PHP 7, PHP 8, PECL phar >= 2.0.0)
PharData::addEmptyDir — 将一个空目录添加到 tar/zip 存档中
说明
public PharData::addEmptyDir(string $directory): void
使用此方法,将创建一个带有路径的空目录。 此方法类似于 ZipArchive::addEmptyDir()。dirname
参数
directory
要在 phar 存档中创建的空目录的名称
返回值
无返回值,失败时引发异常。
示例
示例 #1 A PharData::addEmptyDir() example
<?php
try {
$a = new PharData('/path/to/my.tar');
$a->addEmptyDir('/full/path/to/file');
// demonstrates how this file is stored
$b = $a['full/path/to/file']->isDir();
} catch (Exception $e) {
// handle errors here
}
?>
参见
- Phar::addEmptyDir() - 添加一个空目录到 phar 档案
- PharData::addFile() - 将文件系统中的文件添加到 tar/zip 存档中
- PharData::addFromString() - 将字符串中的文件添加到 tar/zip 存档中