class Request
Request object.
Methods
__construct(string $uri, string $method, array $parameters = array(), array $files = array(), array $cookies = array(), array $server = array(), string $content = null) Constructor. | ||
string | getUri() Gets the request URI. | |
string | getMethod() Gets the request HTTP method. | |
array | getParameters() Gets the request parameters. | |
array | getFiles() Gets the request server files. | |
array | getCookies() Gets the request cookies. | |
array | getServer() Gets the request server parameters. | |
string | getContent() Gets the request raw body data. |
Details
__construct(string $uri, string $method, array $parameters = array(), array $files = array(), array $cookies = array(), array $server = array(), string $content = null)
Constructor.
string getUri()
Gets the request URI.
string getMethod()
Gets the request HTTP method.
array getParameters()
Gets the request parameters.
array getFiles()
Gets the request server files.
array getCookies()
Gets the request cookies.
array getServer()
Gets the request server parameters.
string getContent()
Gets the request raw body data.
Please login to continue.