Searched refs:thousandSep (Results 1 – 2 of 2) sorted by relevance
| /template/twigstarter/vendor/twig/twig/src/Resources/ |
| D | core.php | 119 …ormat_filter(Environment $env, $number, $decimal = null, $decimalPoint = null, $thousandSep = null) argument 123 …->getExtension(CoreExtension::class)->formatNumber($number, $decimal, $decimalPoint, $thousandSep);
|
| /template/twigstarter/vendor/twig/twig/src/Extension/ |
| D | CoreExtension.php | 195 * @param string $thousandSep the character(s) to use for the thousands separator 197 public function setNumberFormat($decimal, $decimalPoint, $thousandSep) argument 199 $this->numberFormat = [$decimal, $decimalPoint, $thousandSep]; 681 * @param string|null $thousandSep the character(s) to use for the thousands separator 683 …public function formatNumber($number, $decimal = null, $decimalPoint = null, $thousandSep = null):… argument 694 if (null === $thousandSep) { 695 $thousandSep = $defaults[2]; 698 return number_format((float) $number, $decimal, $decimalPoint, $thousandSep);
|