The answers above do not include decimals or rounding; this may be useful for people who need to worry about decimals:
Examples: show without decimals, use spaces instead of commas and print with decimals and commas:
$price = 1000000.90;
var_dump(number_format(floor((float) $price), 0, ',', ' '));
var_dump(number_format($price, 2, '.', ','));
Output:
string(9) "1 000 000"
string(12) "1,000,000.90"
source
share