Class Env_Request
Combined POST and GET globals access.
- Core\Env_Request implements ArrayAccess
Methods summary
public
boolean
|
|
public
|
|
public
|
|
public
|
Combined POST and GET globals access.
public
boolean
|
#
offsetExists( mixed $key )
Tests, whether the given key is either valid for POST or GET. Tests, whether the given key is either valid for POST or GET. Parameters
Returns
boolean
true , if key exists in POST or GET arrays, otherwise false .
Since
3.1
Implementation of |
public
|
#
offsetGet( mixed $key )
Retrieves a named POST or GET value with postprocessing. Retrieves a named POST or GET value with postprocessing. Parameters
ReturnsCore\Value New value instance holding trimmed string or unmodified value on
success, otherwise holds Since
3.1
Implementation of |
public
|
#
offsetSet( mixed $key, mixed $value )
Sets a new value for both POST and GET arrays. Sets a new value for both POST and GET arrays. Parameters
Since
3.1
Implementation of |
public
|
#
offsetUnset( mixed $key )
Deletes a POST and GET array index. Deletes a POST and GET array index. Parameters
Since
3.1
Implementation of |