public function ParameterBag::getDigits

Returns the digits of the parameter value.

@api

Parameters

string $key The parameter key:

mixed $default The default value if the parameter key does not exist:

boolean $deep If true, a path like foo[bar] will find deeper items:

Return value

string The filtered value

File

drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/ParameterBag.php, line 232

Class

ParameterBag
ParameterBag is a container for key/value pairs.

Namespace

Symfony\Component\HttpFoundation

Code

public function getDigits($key, $default = '', $deep = false) {

  // we need to remove - and + because they're allowed in the filter
  return str_replace(array(
    '-',
    '+',
  ), '', $this
    ->filter($key, $default, $deep, FILTER_SANITIZE_NUMBER_INT));
}