Requests_Response_Headers::offsetSet() WordPress Method
The Requests_Response_Headers::offsetSet() method is used to set the value of a header in a Requests_Response object. The first parameter is the name of the header and the second is the value to set it to.
Requests_Response_Headers::offsetSet( string $key, string $value ) #
Set the given item
Contents
Parameters
- $key
(string)(Required)Item name
- $value
(string)(Required)Item value
Source
File: wp-includes/Requests/Response/Headers.php
public function offsetSet($key, $value) {
if ($key === null) {
throw new Requests_Exception('Object is a dictionary, not a list', 'invalidset');
}
$key = strtolower($key);
if (!isset($this->data[$key])) {
$this->data[$key] = array();
}
$this->data[$key][] = $value;
}
Expand full source codeCollapse full source codeView on TracView on GitHub