Home
last modified time | relevance | path

Searched refs:thousandSep (Results 1 – 1 of 1) sorted by relevance

/template/twigstarter/vendor/twig/twig/src/Extension/
DCoreExtension.php169 * @param string $thousandSep the character(s) to use for the thousands separator
171 public function setNumberFormat($decimal, $decimalPoint, $thousandSep) argument
173 $this->numberFormat = [$decimal, $decimalPoint, $thousandSep];
607 * @param string $thousandSep the character(s) to use for the thousands separator
611 …ormat_filter(Environment $env, $number, $decimal = null, $decimalPoint = null, $thousandSep = null) argument
622 if (null === $thousandSep) {
623 $thousandSep = $defaults[2];
626 return number_format((float) $number, $decimal, $decimalPoint, $thousandSep);