Взгляните на number_format
.Подпись:
string number_format (
float $number , int $decimals = 0 ,
string $dec_point = '.' , string $thousands_sep = ','
)
Пример:
<?php
echo number_format(37452) . "\n";
// 37,452
echo number_format(37452, 0, ',', '.') . "\n";
// 37.452
?>