Fix del bug #30
Aggiunta di un controllo per evitare la conversione erronea di numeri particolari (Partita IVA, ...) nel caso sia utilizzata l'estensione intl.
This commit is contained in:
parent
6a6a9a64a4
commit
4d5453940a
|
@ -150,7 +150,8 @@ class Formatter
|
|||
}
|
||||
|
||||
// Controllo sull'effettiva natura del numero
|
||||
if (!ctype_digit(str_replace(array_values($this->getNumberSeparators()), '', $value))) {
|
||||
$integer = str_replace(array_values($this->getNumberSeparators()), '', $value);
|
||||
if (!ctype_digit($integer) || (strlen($integer) != strlen((int) $integer))) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue