__construct() __construct(array $parameters = []) : mixed Parameters array $parameters Returns mixed —
replace() replace(array $parameters = []) : mixed Replaces the current parameters by a new set. Parameters array $parameters Returns mixed —
add() add(array $parameters = []) : mixed Adds parameters. Parameters array $parameters Returns mixed —
get() get(string $key, mixed $default = null) : mixed Returns a parameter by name. Parameters string $key mixed $default The default value if the parameter key does not exist Returns mixed —
set() set(string $key, mixed $value) : mixed Sets a parameter by name. Parameters string $key mixed $value The value Returns mixed —
has() has(string $key) : bool Returns true if the parameter is defined. Parameters string $key Returns bool —
getAlpha() getAlpha(string $key, string $default = '') : string Returns the alphabetic characters of the parameter value. Parameters string $key string $default Returns string —
getAlnum() getAlnum(string $key, string $default = '') : string Returns the alphabetic characters and digits of the parameter value. Parameters string $key string $default Returns string —
getDigits() getDigits(string $key, string $default = '') : string Returns the digits of the parameter value. Parameters string $key string $default Returns string —
getInt() getInt(string $key, int $default) : int Returns the parameter value converted to integer. Parameters string $key int $default Returns int —
getBoolean() getBoolean(string $key, bool $default = false) : bool Returns the parameter value converted to boolean. Parameters string $key bool $default Returns bool —
filter() filter(string $key, mixed $default = null, int $filter = FILTER_DEFAULT, mixed $options = []) : mixed Filter key. Parameters string $key mixed $default Default = null int $filter FILTER_* constant mixed $options Filter options Returns mixed —
getIterator() getIterator() : \ArrayIterator<string,mixed> Returns an iterator for parameters. Returns \ArrayIterator —