(PHP 5 >= 5.3.0, PHP 7, PHP 8, PECL phar >= 1.0.0)
PharFileInfo::__construct — 构造一个 Phar 条目对象
不应该直接调用此方法。相反,通过数组访问调用 Phar::offsetGet() 初始化 PharFileInfo 对象。
filename
检索文件的完整 URL。如果你想从 phar boo.phar
中检索文件 my/file.php
的信息,条目应该为 phar://boo.phar/my/file.php
。
如果 __construct() 被调用两次,则抛出 BadMethodCallException。如果请求的 phar URL 格式错误,请求的 phar 无法打开,或者 phar 中找不到该文件,则抛出 UnexpectedValueException。
示例 #1 一个 PharFileInfo::__construct() 示例
<?php
try {
$p = new Phar('/path/to/my.phar', 0, 'my.phar');
$p['testfile.txt'] = "hi\nthere\ndude";
$file = $p['testfile.txt'];
foreach ($file as $line => $text) {
echo "line number $line: $text";
}
// 这也行
$file = new PharFileInfo('phar:///path/to/my.phar/testfile.txt');
foreach ($file as $line => $text) {
echo "line number $line: $text";
}
} catch (Exception $e) {
echo 'Phar 操作失败: ', $e;
}
?>
上面的例子将输出
line number 1: hi line number 2: there line number 3: dude line number 1: hi line number 2: there line number 3: dude