Methods |
public
|
__construct(array $headers = [])
|
#
|
public
|
allPreserveCase(): array
Returns the headers, with original capitalizations.
Returns the headers, with original capitalizations.
|
#
|
public
|
allPreserveCaseWithoutCookies(): array
|
#
|
public
|
replace(array $headers = []): void
Replaces the current HTTP headers by a new set.
Replaces the current HTTP headers by a new set.
Overrides
|
#
|
public
|
all(?string $key = null): array
Returns the headers.
Parameters
$key |
The name of the headers to return or null to get them all
|
Overrides
|
#
|
public
|
set(string $key, string|array|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)
|
Overrides
|
#
|
public
|
remove(string $key): void
Removes a header.
|
#
|
public
|
hasCacheControlDirective(string $key): bool
Returns true if the Cache-Control directive is defined.
Returns true if the Cache-Control directive is defined.
Overrides
|
#
|
public
|
getCacheControlDirective(string $key): bool|string|null
Returns a Cache-Control directive value by name.
Returns a Cache-Control directive value by name.
Overrides
|
#
|
public
|
setCookie(Cookie $cookie): void
|
#
|
public
|
removeCookie(string $name, ?string $path = '/', ?string $domain = null): void
Removes a cookie from the array, but does not unset it in the browser.
Removes a cookie from the array, but does not unset it in the browser.
|
#
|
public
|
getCookies(string $format = self::COOKIES_FLAT): Cookie[]
Returns an array with all cookies.
Returns an array with all cookies.
Throws
|
#
|
public
|
clearCookie(
string $name,
?string $path = '/',
?string $domain = null,
bool $secure = false,
bool $httpOnly = true,
?string $sameSite = null,
): void
Clears a cookie in the browser.
Clears a cookie in the browser.
|
#
|
public
|
makeDisposition(string $disposition, string $filename, string $filenameFallback = ''): string
|
#
|
protected
|
computeCacheControlValue(): string
Returns the calculated value of the cache-control header.
Returns the calculated value of the cache-control header.
This considers several other headers and calculates or modifies the
cache-control header to a sensible, conservative value.
|
#
|