(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";
}
// this also works
$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