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.
1)我正在开发一个电子商务网站,我的价格是 190000 美元,但我希望这个价格为 190000 美元(带逗号)如何显示这样
2)美元价值一直在变化我如何计算物品的价格
在 PHP 中,有一个函数可以格式化价格。
number_format()
http://php.net/manual/en/function.number-format.php
使用如下的php函数。
number_format ( float $number , int $decimals = 0 , string $dec_point = '.' , string $thousands_sep = ',' )
有关此功能的更多详细信息,请在 php.net 上搜索
我不确定,但在 c# 中你可以使用字符串格式。这将在 .net 世界中发挥作用