PHP中的number_format()函数

number_format()函数用于格式化成千上万个分组的数字。

语法

number_format(num,decimals,decimal_pt,separator)

参数

  • num-要格式化的数字。

  • 小数点-指定多少个小数点。

  • decimal_pt-用于小数点的字符串。

  • 分隔符-指定用于千位分隔符的字符串。

返回

number_format()函数返回格式化的数字。

示例

以下是一个例子-

<?php
   echo number_format("10000000");
?>

输出结果

以下是输出-

10,000,000

示例

让我们看另一个例子-

<?php
   echo number_format("3999.9, 2");
?>

输出结果

以下是输出-

4,000