在php中将数字转换为十进制
我有一个数字存储在变量中。从数据库中提取的号码为 9900。我需要将此号码转换为 99.00,以便以 HTML 形式向客户显示。
我想知道如何在 php 中实现这一点。
谢谢。
I have a number stored in a variable. The number is pulled from the database as 9900..I need to convert this number to 99.00 in order to display to a customer in HTML.
I was wondering how can I achieve this in php.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
然后你可以使用
round()
或 < a href="http://php.net/manual/en/function.number-format.php" rel="noreferrer">number_format()
随意。And then you can use
round()
ornumber_format()
as you please.您可以使用 number_format() 函数:
You can use the number_format() function for that:
您可以使用 money_format 或 number_format,如果您要将其显示为价格,您应该查看 money_format,否则 number_format 是正确的选择。
You can do this by either using money_format or number_format, if you are going to display it as a price you should look at money_format, otherwise, number_format is the way to go.