2019-04-04 15:49:13 +11:00
|
|
|
<?php
|
2019-05-11 13:32:07 +10:00
|
|
|
/**
|
2020-09-06 19:38:10 +10:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-05-11 13:32:07 +10:00
|
|
|
*
|
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
|
*
|
2021-01-04 08:54:54 +11:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 13:32:07 +10:00
|
|
|
*
|
2021-06-16 16:58:16 +10:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2019-05-11 13:32:07 +10:00
|
|
|
*/
|
2019-04-04 15:49:13 +11:00
|
|
|
|
|
|
|
|
namespace App\Utils\Traits;
|
|
|
|
|
|
|
|
|
|
/**
|
2020-09-06 19:38:10 +10:00
|
|
|
* Class NumberFormatter.
|
2019-04-04 15:49:13 +11:00
|
|
|
*/
|
|
|
|
|
trait NumberFormatter
|
|
|
|
|
{
|
2019-12-31 08:59:12 +11:00
|
|
|
private function formatValue($value, $precision) : string
|
|
|
|
|
{
|
2019-04-04 20:28:53 +11:00
|
|
|
return number_format($this->parseFloat($value), $precision, '.', '');
|
2019-12-31 08:59:12 +11:00
|
|
|
}
|
2019-04-04 15:49:13 +11:00
|
|
|
|
2019-12-31 08:59:12 +11:00
|
|
|
/**
|
2020-09-06 19:38:10 +10:00
|
|
|
* Parse a float value that may be delimited with either a comma or decimal point.
|
2019-04-18 15:01:40 +10:00
|
|
|
*
|
|
|
|
|
* @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-12-31 08:59:12 +11:00
|
|
|
}
|