class HeaderBag implements IteratorAggregate, Countable
HeaderBag is a container for HTTP headers.
Methods
__construct(array $headers = array()) Constructor. | ||
string | __toString() Returns the headers as a string. | |
array | all() Returns the headers. | |
array | keys() Returns the parameter keys. | |
replace(array $headers = array()) Replaces the current HTTP headers by a new set. | ||
add(array $headers) Adds new headers the current HTTP headers set. | ||
string|array | get(string $key, mixed $default = null, bool $first = true) Returns a header value by name. | |
set(string $key, string|array $values, bool $replace = true) Sets a header by name. | ||
bool | has(string $key) Returns true if the HTTP header is defined. | |
bool | contains(string $key, string $value) Returns true if the given HTTP header contains the given value. | |
remove(string $key) Removes a header. | ||
null|DateTime | getDate(string $key, DateTime $default = null) Returns the HTTP header value converted to a date. | |
addCacheControlDirective(string $key, mixed $value = true) Adds a custom Cache-Control directive. | ||
bool | hasCacheControlDirective(string $key) Returns true if the Cache-Control directive is defined. | |
mixed|null | getCacheControlDirective(string $key) Returns a Cache-Control directive value by name. | |
removeCacheControlDirective(string $key) Removes a Cache-Control directive. | ||
ArrayIterator | getIterator() Returns an iterator for headers. | |
int | count() Returns the number of headers. |
Details
__construct(array $headers = array())
Constructor.
string __toString()
Returns the headers as a string.
array all()
Returns the headers.
array keys()
Returns the parameter keys.
replace(array $headers = array())
Replaces the current HTTP headers by a new set.
add(array $headers)
Adds new headers the current HTTP headers set.
string|array get(string $key, mixed $default = null, bool $first = true)
Returns a header value by name.
set(string $key, string|array $values, bool $replace = true)
Sets a header by name.
bool has(string $key)
Returns true if the HTTP header is defined.
bool contains(string $key, string $value)
Returns true if the given HTTP header contains the given value.
remove(string $key)
Removes a header.
null|DateTime getDate(string $key, DateTime $default = null)
Returns the HTTP header value converted to a date.
addCacheControlDirective(string $key, mixed $value = true)
Adds a custom Cache-Control directive.
bool hasCacheControlDirective(string $key)
Returns true if the Cache-Control directive is defined.
mixed|null getCacheControlDirective(string $key)
Returns a Cache-Control directive value by name.
removeCacheControlDirective(string $key)
Removes a Cache-Control directive.
ArrayIterator getIterator()
Returns an iterator for headers.
int count()
Returns the number of headers.
Please login to continue.