Methods |
public
|
__construct(array $headers = [])
|
#
|
public
|
__toString(): string
Returns the headers as a string.
Returns the headers as a string.
Implements
|
#
|
public
|
all(string|null $key = null): ($key is null ? array<string, list<string|null>> : list<string|null>)
Returns the headers.
Parameters
$key |
The name of the headers to return or null to get them all
|
Overriden by
|
#
|
public
|
keys(): string[]
Returns the parameter keys.
Returns the parameter keys.
|
#
|
public
|
replace(array $headers = []): void
Replaces the current HTTP headers by a new set.
Replaces the current HTTP headers by a new set.
Overriden by
|
#
|
public
|
add(array $headers): void
Adds new headers the current HTTP headers set.
Adds new headers the current HTTP headers set.
|
#
|
public
|
get(string $key, ?string $default = null): ?string
Returns the first header by name or the default one.
Returns the first header by name or the default one.
|
#
|
public
|
set(string $key, string|string[]|null $values, bool $replace = true): void
Sets a header by name.
Parameters
$values |
The value or an array of values
|
$replace |
Whether to replace the actual value or not (true by default)
|
Overriden by
|
#
|
public
|
has(string $key): bool
Returns true if the HTTP header is defined.
Returns true if the HTTP header is defined.
|
#
|
public
|
contains(string $key, string $value): bool
Returns true if the given HTTP header contains the given value.
Returns true if the given HTTP header contains the given value.
|
#
|
public
|
remove(string $key): void
Removes a header.
|
#
|
public
|
getDate(string $key, ?DateTimeInterface $default = null): ?DateTimeImmutable
Returns the HTTP header value converted to a date.
Returns the HTTP header value converted to a date.
Throws
|
#
|
public
|
addCacheControlDirective(string $key, bool|string $value = true): void
Adds a custom Cache-Control directive.
Adds a custom Cache-Control directive.
|
#
|
public
|
hasCacheControlDirective(string $key): bool
Returns true if the Cache-Control directive is defined.
Returns true if the Cache-Control directive is defined.
Overriden by
|
#
|
public
|
getCacheControlDirective(string $key): bool|string|null
Returns a Cache-Control directive value by name.
Returns a Cache-Control directive value by name.
Overriden by
|
#
|
public
|
removeCacheControlDirective(string $key): void
Removes a Cache-Control directive.
Removes a Cache-Control directive.
|
#
|
public
|
getIterator(): ArrayIterator<string, list<string|null>>
Returns an iterator for headers.
Returns an iterator for headers.
Implements
|
#
|
public
|
count(): int
Returns the number of headers.
Returns the number of headers.
Implements
|
#
|
protected
|
getCacheControlHeader(): string
|
#
|
protected
|
parseCacheControl(string $header): array
Parses a Cache-Control HTTP header.
Parses a Cache-Control HTTP header.
|
#
|