IRequest
interface IRequest
IHttpRequest provides access scheme for request sent via HTTP.
Constants
GET |
HTTP request method |
POST |
HTTP request method |
HEAD |
HTTP request method |
PUT |
HTTP request method |
DELETE |
HTTP request method |
PATCH |
HTTP request method |
Methods
Returns variable provided to the script via URL query ($_GET).
Returns variable provided to the script via POST method ($_POST).
Returns uploaded file.
Returns uploaded files.
Returns variable provided to the script via HTTP cookies.
Returns variables provided to the script via HTTP cookies.
Returns HTTP request method (GET, POST, HEAD, PUT, ...). The method is case-sensitive.
Checks HTTP request method.
Return the value of the HTTP header. Pass the header name as the plain, HTTP-specified header name (e.g. 'Accept-Encoding').
Returns all HTTP headers.
Is the request is sent via secure channel (https).
Is AJAX request?
Returns the IP address of the remote client.
Returns the host of the remote client.
Returns raw content of HTTP request body.
Details
at line 29
UrlScript
getUrl()
Returns URL object.
at line 40
mixed
getQuery($key = NULL, $default = NULL)
Returns variable provided to the script via URL query ($_GET).
If no key is passed, returns the entire array.
at line 49
mixed
getPost($key = NULL, $default = NULL)
Returns variable provided to the script via POST method ($_POST).
If no key is passed, returns the entire array.
at line 56
FileUpload|null
getFile($key)
Returns uploaded file.
at line 62
array
getFiles()
Returns uploaded files.
at line 70
mixed
getCookie($key, $default = NULL)
Returns variable provided to the script via HTTP cookies.
at line 76
array
getCookies()
Returns variables provided to the script via HTTP cookies.
at line 84
string
getMethod()
Returns HTTP request method (GET, POST, HEAD, PUT, ...). The method is case-sensitive.
at line 91
bool
isMethod($method)
Checks HTTP request method.
at line 100
mixed
getHeader($header, $default = NULL)
Return the value of the HTTP header. Pass the header name as the plain, HTTP-specified header name (e.g. 'Accept-Encoding').
at line 106
array
getHeaders()
Returns all HTTP headers.
at line 112
bool
isSecured()
Is the request is sent via secure channel (https).
at line 118
bool
isAjax()
Is AJAX request?
at line 124
string|null
getRemoteAddress()
Returns the IP address of the remote client.
at line 130
string|null
getRemoteHost()
Returns the host of the remote client.
at line 136
string|null
getRawBody()
Returns raw content of HTTP request body.