|
PharFileInfo::getMetadataReturns file-specific meta-data saved with a file Description
public mixed PharFileInfo::getMetadata(array
$unserializeOptions = [])Return meta-data that was saved in the Phar archive's manifest for this file. Parameters
Return Values
any PHP variable that can be serialized and is stored as meta-data for the file,
or Changelog
Examples
Example #1 A PharFileInfo::getMetadata example
The above example will output:
array(2) {
["user"]=>
string(4) "bill"
["mime-type"]=>
string(10) "text/plain"
}
See Also
|