$value) { $this->headers[strtolower($key)] = $value; } } public function offsetGet($offset) { return $this->headers[strtolower($offset)]; } public function offsetSet($offset, $value) { $this->headers[strtolower($offset)] = $value; } public function offsetExists($offset) { return isset($this->headers[strtolower($offset)]); } public function offsetUnset($offset) { unset($this->headers[strtolower($offset)]); } }