在php中将数字转换为十进制

发布于 2024-09-19 03:01:43 字数 111 浏览 7 评论 0原文

我有一个数字存储在变量中。从数据库中提取的号码为 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 技术交流群。

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

发布评论

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

评论(3

一紙繁鸢 2024-09-26 03:01:43
$priceInCents = 9900;
$priceInDollars = $priceInCents / 100;

然后你可以使用 round() 或 < a href="http://php.net/manual/en/function.number-format.php" rel="noreferrer">number_format() 随意。

$priceInCents = 9900;
$priceInDollars = $priceInCents / 100;

And then you can use round() or number_format() as you please.

一城柳絮吹成雪 2024-09-26 03:01:43

您可以使用 number_format() 函数:

echo number_format(9900/100);

You can use the number_format() function for that:

echo number_format(9900/100);
桃扇骨 2024-09-26 03:01:43

您可以使用 money_formatnumber_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.

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