要用PHP設定數字格式,可以用number_format(),若要取四捨五入round().
Ex:
number_format(12.345,2) ==> 12.34
round(12.345,2)==> 12.36
若是JavaScript可以用.toFixed()方法
EX:
num = 12.345
num.toFixed(2) ==> 12.35
要用PHP設定數字格式,可以用number_format(),若要取四捨五入round().
Ex:
number_format(12.345,2) ==> 12.34
round(12.345,2)==> 12.36
若是JavaScript可以用.toFixed()方法
EX:
num = 12.345
num.toFixed(2) ==> 12.35