Google\Cloud\PubSub\Message::attribute PHP 메소드

attribute() 공개 메소드

Example: echo $message->attribute('browser-name');
public attribute ( string $key ) : string | null
$key string The attribute key
리턴 string | null
    public function attribute($key)
    {
        return isset($this->message['attributes'][$key]) ? $this->message['attributes'][$key] : null;
    }