Searched refs:dec_point (Results 1 – 2 of 2) sorted by relevance
/plugin/structprogress/types/ |
H A D | Progress.php | 101 * @param string $dec_point 105 protected function formatWithoutRounding($number, $dec_point, $thousands_sep) argument 110 $out = number_format(abs(floatval($tmp[0])), 0, $dec_point, $thousands_sep); 112 $out .= $dec_point . $tmp[1];
|
/plugin/struct/types/ |
H A D | Decimal.php | 125 * @param string $dec_point 129 protected function formatWithoutRounding($number, $dec_point, $thousands_sep) argument 134 $out = number_format(abs((float) $tmp[0]), 0, $dec_point, $thousands_sep); 135 if (isset($tmp[1])) $out .= $dec_point . $tmp[1];
|