Response
class Response
Response object.
Methods
__construct(string $content = '', int $status = 200, array $headers = array())
Constructor.
string
__toString()
Converts the response object to string containing all headers and the response content.
string
getContent()
Gets the response content.
int
getStatus()
Gets the response status code.
array
getHeaders()
Gets the response headers.
string|array
getHeader(string $header, bool $first = true)
Gets a response header.
Details
at line line 35
__construct(string $content = '', int $status = 200, array $headers = array())
Constructor.
The headers array is a set of key/value pairs. If a header is present multiple times then the value is an array of all the values.
at line line 47
string
__toString()
Converts the response object to string containing all headers and the response content.
at line line 81
string
getContent()
Gets the response content.
at line line 91
int
getStatus()
Gets the response status code.
at line line 101
array
getHeaders()
Gets the response headers.
at line line 114
string|array
getHeader(string $header, bool $first = true)
Gets a response header.