use number_format PHP Function:
number_format(your_number,otional_decimals,optional_decimal_point,optional_1000_separator)
You can not specify just the decimal point or 1000 separator, if you specify one you need to specify both. When working with decimals, it will function like round () and put things at or over .5 up, and under .5 down.
Like below:
number_format ($price, 2);