PHP 将数字转换为货币

发布于 2024-12-08 01:37:05 字数 116 浏览 0 评论 0原文

我已经仔细寻找了解决我的问题的任何帮助,所以希望有人可以在这里帮助我。

基本上我有一个数字被保存到 $price 中,数字是 15900。这应该转换为 159.00。

有谁知道该怎么做?

I've had a good look around for any help with my problem so hopefully someone can help me here.

Basically i have a number which is saved into a $price, the number is 15900. Which should translate to 159.00.

Does anyone know how to do this?

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

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

发布评论

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

评论(2

十年不长 2024-12-15 01:37:05

为此,请使用 number_format。它将返回一个字符串,从而保持小数位不变,即使它们是 .00

$price = 15900;

// Defaults to a comma as a thousands separator
// but I've set it to an empty string (last argument)
$formatted = number_format( $price / 100, 2, '.', '' );

echo $formatted;

或者更好的是,也许也看看 money_format ,具体取决于是否国际化符号和/或货币符号也很重要。

Use number_format for this. It will return a string, thereby keeping the decimal places intact, even if they will be .00.

$price = 15900;

// Defaults to a comma as a thousands separator
// but I've set it to an empty string (last argument)
$formatted = number_format( $price / 100, 2, '.', '' );

echo $formatted;

Or better still, maybe have a look at money_format as well, depending on whether internationalized notations and/or currency symbols are of importance as well.

情仇皆在手 2024-12-15 01:37:05
$current = 15900;
$your = round($current / 100, 2);
$current = 15900;
$your = round($current / 100, 2);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文