(PHP 5 >= 5.3.0, PHP 7, PHP 8, PECL phar >= 1.0.0)
PharFileInfo::getMetadata — 返回与文件一起保存的特定于文件元数据
返回存储在 Phar 归档的清单中用于此文件的元数据。
任何可序列化并作为文件元数据存储的 PHP 变量,或者如果未存储元数据,则为 null
。
版本 | 说明 |
---|---|
8.0.0 | 添加了参数 unserializeOptions 。 |
范例 #1 PharFileInfo::getMetadata() 范例
<?php
// 确保它不存在
@unlink('brandnewphar.phar');
try {
$p = new Phar(dirname(__FILE__) . '/brandnewphar.phar', 0, 'brandnewphar.phar');
$p['file.txt'] = 'hello';
$p['file.txt']->setMetadata(array('user' => 'bill', 'mime-type' => 'text/plain'));
var_dump($p['file.txt']->getMetadata());
} catch (Exception $e) {
echo '无法创建/修改 brandnewphar.phar: ', $e;
}
?>
上面的例子将输出
array(2) { ["user"]=> string(4) "bill" ["mime-type"]=> string(10) "text/plain" }