标签: php
我很好奇这样的事情会起作用
class Test { public $price; } $obj = new Test(); $obj->price = 4500.00; echo $obj->price;
如何将该值返回为4500.00而不是4500?
4500.00
4500
答案 0 :(得分:2)
echo number_format($obj->price,2);
如果你没有千元分隔符:
echo number_format($obj->price,2,'.','');
请参阅number_format