Hello,
I have values like 1,000,000 that I need to add and then display. I'm doing this:
<?php
$vlgastoGeralDeFabricacao = str_replace(',', '.', $vlgastoGeralDeFabricacao);
$vlDepreciacao = str_replace(',', '.', $vlDepreciacao);
$vlgastoPessoalDeProducao = str_replace(',', '.', $vlgastoPessoalDeProducao);
$vlOutrosCustosIndiretos = str_replace(',', '.', $vlOutrosCustosIndiretos);
$custoIndireto = $vlgastoGeralDeFabricacao + $vlDepreciacao + $vlgastoPessoalDeProducao + $vlOutrosCustosIndiretos;
echo number_format($custoIndireto,2,',','.');
?>
but this error always appears:
Notice: A well-formed numeric value encountered
and points to the echo line.
Otherwise the value of 185,700.00 is appearing as 185.70