如何使用php将小数点后的数字相加

发布于 2024-10-01 08:27:53 字数 107 浏览 1 评论 0原文

我无法想到一个在小数点后添加零的 php 函数。假设我有 $money="10000" 我需要一个函数将 .00 添加到 10000.00 并在 234.5 之后仅添加一个零到 0。 有人可以帮我吗?

I am having trouble thinking of a php function to add zeros after a decimal. Let say I have $money="10000" I need a function that will add .00 to 10000.00 and to add just a zero to 0 after 234.5.
can anyone help me please?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

无尽的现实 2024-10-08 08:27:53

正如丹·格罗斯曼所说; number_format 是你的朋友,你可以通过以下方式完成这些双零:

$money = "1234";
$formatedNumber = number_format($money, 2, '.', '');
echo $formatedNumber;

// 1234.00

Just as Dan Grossman said; number_format is your friend here and you'd accomplish those double zeros by:

$money = "1234";
$formatedNumber = number_format($money, 2, '.', '');
echo $formatedNumber;

// 1234.00
玉环 2024-10-08 08:27:53

该函数是 number_format

http://php.net/manual/en/function.number -format.php

始终首先搜索 PHP 手册:)

The function is number_format

http://php.net/manual/en/function.number-format.php

Always search the PHP manual first :)

溺ぐ爱和你が 2024-10-08 08:27:53

也许不是您想听到的答案,但我认为您最好将这些值存储在数字类型中,并在输出之前正确格式化它们

Maybe not the answer you want to hear, but I think you're better off storing these values in numeric types and formatting them properly just before output

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