(Unknown)
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
}
?>