class FileBag extends ParameterBag
FileBag is a container for uploaded files.
Methods
__construct(array $parameters = array()) Constructor. | ||
array | all() Returns the parameters. | from ParameterBag |
array | keys() Returns the parameter keys. | from ParameterBag |
replace(array $files = array()) Replaces the current parameters by a new set. | ||
add(array $files = array()) Adds parameters. | ||
mixed | get(string $key, mixed $default = null, bool $deep = false) Returns a parameter by name. | from ParameterBag |
set(string $key, mixed $value) Sets a parameter by name. | ||
bool | has(string $key) Returns true if the parameter is defined. | from ParameterBag |
remove(string $key) Removes a parameter. | from ParameterBag | |
string | getAlpha(string $key, string $default = '', bool $deep = false) Returns the alphabetic characters of the parameter value. | from ParameterBag |
string | getAlnum(string $key, string $default = '', bool $deep = false) Returns the alphabetic characters and digits of the parameter value. | from ParameterBag |
string | getDigits(string $key, string $default = '', bool $deep = false) Returns the digits of the parameter value. | from ParameterBag |
int | getInt(string $key, int $default, bool $deep = false) Returns the parameter value converted to integer. | from ParameterBag |
bool | getBoolean(string $key, mixed $default = false, bool $deep = false) Returns the parameter value converted to boolean. | from ParameterBag |
mixed | filter(string $key, mixed $default = null, int $filter = FILTER_DEFAULT, mixed $options = array(), bool $deep = false) Filter key. | from ParameterBag |
ArrayIterator | getIterator() Returns an iterator for parameters. | from ParameterBag |
int | count() Returns the number of parameters. | from ParameterBag |
Details
__construct(array $parameters = array())
Constructor.
array all()
Returns the parameters.
array keys()
Returns the parameter keys.
replace(array $files = array())
Replaces the current parameters by a new set.
add(array $files = array())
Adds parameters.
mixed get(string $key, mixed $default = null, bool $deep = false)
Returns a parameter by name.
Note: Finding deep items is deprecated since version 2.8, to be removed in 3.0.
set(string $key, mixed $value)
Sets a parameter by name.
bool has(string $key)
Returns true if the parameter is defined.
remove(string $key)
Removes a parameter.
string getAlpha(string $key, string $default = '', bool $deep = false)
Returns the alphabetic characters of the parameter value.
string getAlnum(string $key, string $default = '', bool $deep = false)
Returns the alphabetic characters and digits of the parameter value.
string getDigits(string $key, string $default = '', bool $deep = false)
Returns the digits of the parameter value.
int getInt(string $key, int $default, bool $deep = false)
Returns the parameter value converted to integer.
bool getBoolean(string $key, mixed $default = false, bool $deep = false)
Returns the parameter value converted to boolean.
mixed filter(string $key, mixed $default = null, int $filter = FILTER_DEFAULT, mixed $options = array(), bool $deep = false)
Filter key.
ArrayIterator getIterator()
Returns an iterator for parameters.
int count()
Returns the number of parameters.
Please login to continue.