(PHP 5 >= 5.3.0, PHP 7, PHP 8, PECL phar >= 1.0.0)
Phar::getMetadata — 返回 phar 档案元数据
无参数。
任何可以序列化并作为 Phar 档案元数据存储的 PHP 值,或者如果未存储元数据,则为 null
。
版本 | 描述 |
---|---|
8.0.0 | 添加了参数 unserializeOptions 。 |
示例 #1 Phar::getMetadata() 示例
<?php
// 确保它不存在
@unlink('brandnewphar.phar');
try {
$p = new Phar(dirname(__FILE__) . '/brandnewphar.phar', 0, 'brandnewphar.phar');
$p['file.php'] = '<?php echo "hello";';
$p->setMetadata(array('bootstrap' => 'file.php'));
var_dump($p->getMetadata());
} catch (Exception $e) {
echo 'Could not modify phar:', $e;
}
?>
上面的例子将输出
array(1) { ["bootstrap"]=> string(8) "file.php" }