Request::getHttpMethodParameterOverride()

static bool getHttpMethodParameterOverride() Checks whether support for the _method request parameter is enabled. Return Value bool True when the _method request parameter is enabled, false otherwise

Request::getHttpHost()

string getHttpHost() Returns the HTTP host being requested. The port name will be appended to the host if it's non-standard. Return Value string

Request::getEncodings()

array getEncodings() Gets a list of encodings acceptable by the client browser. Return Value array List of encodings in preferable order

Request::getFormat()

string|null getFormat(string $mimeType) Gets the format associated with the mime type. Parameters string $mimeType The associated mime type Return Value string|null The format (null if not found)

Request::getFiles()

array getFiles() Gets the request server files. Return Value array The request files

Request::getDefaultLocale()

string getDefaultLocale() Get the default locale. Return Value string

Request::getETags()

array getETags() Gets the Etags. Return Value array The entity tags

Request::getClientIps()

array getClientIps() Returns the client IP addresses. In the returned array the most trusted IP address is first, and the least trusted one last. The "real" client IP address is the last one, but this is also the least trusted one. Trusted proxies are stripped. Use this method carefully; you should use getClientIp() instead. Return Value array The client IP addresses See also getClientIp()

Request::getContent()

string getContent() Gets the request raw body data. Return Value string The request raw body data

Request::getCookies()

array getCookies() Gets the request cookies. Return Value array The request cookies