PharData::__construct

(PHP 5 >= 5.3.0, PHP 7, PHP 8, PECL phar >= 2.0.0)

PharData::__construct构造一个不可执行的 tar 或 zip 档案对象

描述

public PharData::__construct(
    string $filename,
    int $flags = FilesystemIterator::SKIP_DOTS | FilesystemIterator::UNIX_PATHS,
    ?string $alias = null,
    int $format = 0
)

参数

filename

指向现有 tar/zip 档案或待创建档案的路径

flags

传递给 Phar 父类 RecursiveDirectoryIterator 的标志。

alias

调用流功能时,应该用此别名引用此 Phar 档案。

format

Phar 类中可用的 文件格式常量 之一。

错误/异常

如果调用两次,则抛出 BadMethodCallException;如果无法打开 Phar 档案,则抛出 UnexpectedValueException

示例

示例 #1 PharData::__construct() 示例

<?php
try {
$p = new PharData('/path/to/my.tar', Phar::CURRENT_AS_FILEINFO | Phar::KEY_AS_FILENAME);
} catch (
UnexpectedValueException $e) {
die(
'Could not open my.tar');
} catch (
BadMethodCallException $e) {
echo
'technically, this cannot happen';
}
echo
file_get_contents('phar:///path/to/my.tar/example.txt');
?>

添加备注

用户贡献的备注

此页面没有用户贡献的备注。
To Top