如何使用php将小数点后的数字相加
我无法想到一个在小数点后添加零的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
正如丹·格罗斯曼所说; number_format 是你的朋友,你可以通过以下方式完成这些双零:
Just as Dan Grossman said; number_format is your friend here and you'd accomplish those double zeros by:
该函数是 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 :)
也许不是您想听到的答案,但我认为您最好将这些值存储在数字类型中,并在输出之前正确格式化它们
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