invoiceninja/app/Utils/Traits/NumberFormatter.php

41 lines
800 B
PHP
Raw Normal View History

2019-04-04 15:49:13 +11:00
<?php
namespace App\Utils\Traits;
/**
* Class NumberFormatter
* @package App\Utils\Traits
*/
trait NumberFormatter
{
2019-04-18 15:01:40 +10:00
2019-04-04 20:28:53 +11:00
private function formatValue($value, $precision) : string
2019-04-04 15:49:13 +11:00
{
2019-04-18 15:01:40 +10:00
2019-04-04 20:28:53 +11:00
return number_format($this->parseFloat($value), $precision, '.', '');
2019-04-18 15:01:40 +10:00
2019-04-04 15:49:13 +11:00
}
2019-04-18 15:01:40 +10:00
/**
* Parse a float value that may be delimited with either a comma or decimal point
*
* @param string $value The value
*
* @return float Consumable float value
*/
private function parseFloat($value) : float
2019-04-04 15:49:13 +11:00
{
2019-04-18 15:01:40 +10:00
2019-04-04 15:49:13 +11:00
// check for comma as decimal separator
if (preg_match('/,[\d]{1,2}$/', $value)) {
$value = str_replace(',', '.', $value);
}
$value = preg_replace('/[^0-9\.\-]/', '', $value);
return floatval($value);
2019-04-18 15:01:40 +10:00
2019-04-04 15:49:13 +11:00
}
}