Returns header value's string representation.
public function __toString() : string { $string = $this->value . ($this->quality < 1 ? ';q=' . $this->quality : ''); if (\count($this->attributes) > 0) { $string .= '; ' . HeaderUtils::toString($this->attributes, ';'); } return $string; }