(PHP 5 >= 5.3.0, PHP 7, PECL phar >= 2.0.0)
Phar::addEmptyDir — 添加一个空目录到 phar 档案
$dirname
) : voidNote:
此方法需要 将 php.ini 中的 phar.readonly 设为 0 以适合 Phar 对象. 否则, 将抛出PharException.
通过这个方法,可以创建一个以 dirname 为路径名的空目录。 这个方法和 ZipArchive::addEmptyDir() 类似。
dirname
需要在 phar 档案中创建的空目录名称
没有返回值, 失败时抛出异常(exception)。
Example #1 一个 Phar::addEmptyDir() 示例
<?php
try {
$a = new Phar('/path/to/phar.phar');
$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
}
?>