PHP 上的简单减法(算术运算符)
我需要一些关于这个简单减法的帮助:
$savings = ($newprice - $newvalue);
$newprice 和 $newvalue
是诸如 120.00
和 40.00
的值 问题是结果显示为80
,末尾不带 .00
(dot00)。
我希望将值保持相同的格式(最后一个点加双 cero);我需要更改或包含哪些代码?
提前致谢
I need some help with this simple substraction:
$savings = ($newprice - $newvalue);
$newprice and $newvalue
are values like 120.00
and 40.00
The problem is that the result is shown as 80
, without the .00
(dot00) at the end.
I will like to keep the values on the same format (a dot plus double cero at the end); what I need to change or include to that code ?
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
http://php.net/number_format
http://php.net/number_format
检查这个函数:
Check into this function:
我认为你需要做
I think you need to do