将数字字符串 1000000 更改为 1.000.000

发布于 2024-11-24 02:39:32 字数 213 浏览 0 评论 0原文

使用 PhP 我想让我的数字更“可读”...

我想修改,例如:

  • 10 ... 10 (没有变化)
  • 100 将是 100 (仍然没有变化)
  • 1000 将是 1.000
  • 1.000.000 将是 1.000 .000
  • 1000000000 将是 1.000.000.000 等

Using PhP I want to make my numbers more 'readable'...

I want to modify for example:

  • 10 ... 10 (no change)
  • 100 would be 100 (still no change)
  • 1000 would be 1.000
  • 1.000.000 would be 1.000.000
  • 1000000000 would be 1.000.000.000 etc

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

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

发布评论

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

评论(3

伴梦长久 2024-12-01 02:39:32

您正在寻找 NumberFormatter

You're looking for NumberFormatter.

淡写薰衣草的香 2024-12-01 02:39:32
$number = 1000000000000.4568;
$str_num = number_format( $number, 2, '.', '.' );

// $str_num Output
1.000.000.000.000.46
$number = 1000000000000.4568;
$str_num = number_format( $number, 2, '.', '.' );

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