I'm having the following problem.
Follow my code:
$valores = '530222077.99';
$moeda = new NumberFormatter('pt_BR', NumberFormatter::CURRENCY);
$valores = $moeda->formatCurrency($valores, 'BRL');
echo $valores;
The following code returns me: R$530.222.077,99
. However, I need it to return 530.222.077,99
, that is without the R$
.