Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个整数30000。我想将其更改为显示为30,000.
30000
30,000
有人可以解释我如何用 PHP 做到这一点吗?
谢谢你。
您可以使用
<?php echo number_format(30000); ?>
您可以使用number_format或money_format。参考这里。
number_format
money_format
使用number_format($number);这会将其转换为所需的格式。
number_format($number);