用PHP将逗号添加到整数
Posted
技术标签:
【中文标题】用PHP将逗号添加到整数【英文标题】:Add comma to a whole number with PHP 【发布时间】:2018-02-27 10:43:01 【问题描述】:如何用 php 给整数加逗号?
示例: $数字 = 1000 $output_i_want = 10,00
示例 2: $数字 = 10000 $output_i_want = 100,00
【问题讨论】:
除以 100 并使用 number_format 看起来类似于在 php (***.com/a/17780702/3452102) 中添加逗号作为千位分隔符和浮点点 【参考方案1】:您将数字除以 100,然后以 2 位小数显示结果。
只需使用 number_format:
$number="1000";
echo number_format(($number/100), 2, ',', ' ');
【讨论】:
【参考方案2】:PHP function number_format()
PHP Arithmetic Operators
number_format( 1000 / 100 , 2, ',', ' ');
number_format( 10000 / 100 , 2, ',', ' ');
【讨论】:
以上是关于用PHP将逗号添加到整数的主要内容,如果未能解决你的问题,请参考以下文章