Horde_Mime_Part::getMetadata PHP 메소드

getMetadata() 공개 메소드

Retrieves metadata from this object.
public getMetadata ( string $key ) : mixed
$key string The metadata key.
리턴 mixed The metadata, or null if it doesn't exist.
    public function getMetadata($key)
    {
        return isset($this->_metadata[$key]) ? $this->_metadata[$key] : null;
    }