I get an int in U.S format.
$UsInt = "67,450";
I need to convert it in European format.
$EuInt = "67450";
I can not use str_replace()
to replace the virgule. Do not use str_replace()
is a mandatory deposit.
i can't use number_format()
, because i can't pass a comma separated number to this function
Would exist a PHP function to do this? Or someone has already had the problem and was able to get out?