Joywork/import/helper/Convertor.php

9 lines
144 B
PHP
Raw Permalink Normal View History

2026-05-22 20:21:54 +02:00
<?php
abstract class Convertor
{
public static function strToFloat($string)
{
return floatval(str_replace(',', '.', $string));
}
}