PHP 上的简单减法(算术运算符)

发布于 2024-11-30 14:59:05 字数 304 浏览 3 评论 0原文

我需要一些关于这个简单减法的帮助:

$savings = ($newprice - $newvalue);

$newprice 和 $newvalue 是诸如 120.0040.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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

雄赳赳气昂昂 2024-12-07 14:59:05

http://php.net/number_format

$savings = number_format($newprice - $newvalue, 2);

http://php.net/number_format

$savings = number_format($newprice - $newvalue, 2);
蓦然回首 2024-12-07 14:59:05
$savings = sprintf("%0.2f", ($newprice - $newvalue));
$savings = sprintf("%0.2f", ($newprice - $newvalue));
雨落□心尘 2024-12-07 14:59:05

检查这个函数:

number_format();

Check into this function:

number_format();
耀眼的星火 2024-12-07 14:59:05

我认为你需要做

$savings = 80;
echo number_format($savings);

I think you need to do

$savings = 80;
echo number_format($savings);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文