I want to return a value of a variable, but when I enter the number_format function in the variable, it ends up adding 2 zeros at the end of the value
$valor = 5300000; // Aqui o número só está sem a formatação | aqui só adicionaria a virgula e o ponto e ficaria: 53,000.00
$valor_f = number_format($valor, 2, ",", ".");
It is returning me 5,300,000.00, I would like it to return 53,000.00.