1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/Utils/Traits/NumberFormatter.php

44 lines
1.0 KiB
PHP
Raw Normal View History

2019-04-04 06:49:13 +02:00
<?php
2019-05-11 05:32:07 +02:00
/**
* Invoice Ninja (https://invoiceninja.com).
2019-05-11 05:32:07 +02:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
2019-05-11 05:32:07 +02:00
*
* @license https://opensource.org/licenses/AAL
*/
2019-04-04 06:49:13 +02:00
namespace App\Utils\Traits;
/**
* Class NumberFormatter.
2019-04-04 06:49:13 +02:00
*/
trait NumberFormatter
{
private function formatValue($value, $precision) : string
{
2019-04-04 11:28:53 +02:00
return number_format($this->parseFloat($value), $precision, '.', '');
}
2019-04-04 06:49:13 +02:00
/**
* Parse a float value that may be delimited with either a comma or decimal point.
2019-04-18 07:01:40 +02:00
*
* @param string $value The value
*
* @return float Consumable float value
*/
private function parseFloat($value) : float
2019-04-04 06:49:13 +02:00
{
2019-04-18 07:01:40 +02:00
2019-04-04 06:49:13 +02: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);
}
}