PHP8 Phar::__construct
PHP 5 >= 5.3.0, PHP 7, PHP 8, PECL phar >= 1.0.0)
Phar::__construct — 构造一个 Phar 存档对象
说明
public Phar::__construct(string $filename, int $flags = FilesystemIterator::SKIP_DOTS | FilesystemIterator::UNIX_PATHS, ?string $alias = null)
参数
filename
现有 Phar 存档或待创建存档的路径。文件名的 扩展名必须包含 .phar。
flags
要传递给父类 RecursiveDirectoryIterator 的标志。
alias
在对流的调用中应引用此 Phar 存档的别名 功能性。
错误/异常
如果调用两次,则引发 BadMethodCallException,如果无法打开 phar 存档,则引发 UnexpectedValueException。
示例
示例 #1 A Phar::__construct() example
<?php
try {
$p = new Phar('/path/to/my.phar', FilesystemIterator::CURRENT_AS_FILEINFO | FilesystemIterator::KEY_AS_FILENAME,
'my.phar');
} catch (UnexpectedValueException $e) {
die('Could not open my.phar');
} catch (BadMethodCallException $e) {
echo 'technically, this cannot happen';
}
// this works now
echo file_get_contents('phar://my.phar/example.txt');
// and works as if we had typed
echo file_get_contents('phar:///path/to/my.phar/example.txt');
?>