【发布时间】:2011-05-25 00:21:17
【问题描述】:
价格以美分为单位,但只要价格低于 10 美元,它就不会增加 0.00!
$price = (float)($cents/100);
$price = number_format($price,2);
如果 number_format() 不起作用,我希望能够表示 0.00 和 0.01 和 1.01 不知道该怎么做!
【问题讨论】:
标签: php decimal number-formatting