Home
last modified time | relevance | path

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

/plugin/findologicxmlexport/vendor/twig/twig/src/Extension/
H A DCoreExtension.php122 * @param string $thousandSep the character(s) to use for the thousands separator
124 public function setNumberFormat($decimal, $decimalPoint, $thousandSep) argument
126 $this->numberFormat = [$decimal, $decimalPoint, $thousandSep];
556 * @param string $thousandSep the character(s) to use for the thousands separator
560 …ormat_filter(Environment $env, $number, $decimal = null, $decimalPoint = null, $thousandSep = null) argument
571 if (null === $thousandSep) {
572 $thousandSep = $defaults[2];
575 return number_format((float) $number, $decimal, $decimalPoint, $thousandSep);