‪TYPO3CMS  ‪main
TYPO3\CMS\Core\Http\RedirectResponse Class Reference
Inheritance diagram for TYPO3\CMS\Core\Http\RedirectResponse:
TYPO3\CMS\Core\Http\Response TYPO3\CMS\Core\Http\Message

Public Member Functions

 __construct (string|UriInterface $uri, int $status=302, array $headers=[])
 
- ‪Public Member Functions inherited from ‪TYPO3\CMS\Core\Http\Response
 __construct ($body='php://temp', int $statusCode=200, array $headers=[], string $reasonPhrase='')
 
int getStatusCode ()
 
string getReasonPhrase ()
 
- ‪Public Member Functions inherited from ‪TYPO3\CMS\Core\Http\Message
string getProtocolVersion ()
 
array getHeaders ()
 
bool hasHeader (string $name)
 
string[] getHeader (string $name)
 
string getHeaderLine (string $name)
 
StreamInterface getBody ()
 
 filter (string $value)
 
 validateHeaderName (string $name)
 
 isValidHeaderValue (string $value)
 

Additional Inherited Members

- ‪Static Public Member Functions inherited from ‪TYPO3\CMS\Core\Http\Response
static withStatus (int $code, string $reasonPhrase='')
 
- ‪Static Public Member Functions inherited from ‪TYPO3\CMS\Core\Http\Message
static withProtocolVersion (string $version)
 
static withHeader (string $name, $value)
 
static withAddedHeader (string $name, $value)
 
static withoutHeader (string $name)
 
static withBody (StreamInterface $body)
 
- ‪Protected Member Functions inherited from ‪TYPO3\CMS\Core\Http\Message
 assertHeaders (array $headers)
 
array filterHeaders (array $originalHeaders)
 
 arrayContainsOnlyStrings (array $data)
 
 validateHeaderValues (array $values)
 
- ‪Protected Attributes inherited from ‪TYPO3\CMS\Core\Http\Response
int $statusCode
 
string $reasonPhrase = ''
 
array $availableStatusCodes
 
- ‪Protected Attributes inherited from ‪TYPO3\CMS\Core\Http\Message
string $protocolVersion = '1.1'
 
array $headers = []
 
array $lowercasedHeaderNames = []
 
StreamInterface $body = null
 

Detailed Description

A default redirect response object

Highly inspired by ZF zend-diactoros

Note that this is not public API yet.

Definition at line 29 of file RedirectResponse.php.

Constructor & Destructor Documentation

◆ __construct()

TYPO3\CMS\Core\Http\RedirectResponse::__construct ( string|UriInterface  $uri,
int  $status = 302,
array  $headers = [] 
)

Creates a redirect response object with a given URI and status code. Also sets the "Location" response header.

Parameters
string | UriInterface$uri‪URI for the Location header.
int$status‪status code for the redirect; defaults to 302.
array$headers‪Additional headers to be set.

Definition at line 39 of file RedirectResponse.php.

References TYPO3\CMS\Core\Http\Message\$headers.