Returns true if the given HTTP header contains the given value.
public function contains(string $key, string $value) : bool { return \in_array($value, $this->all($key), true); }