PHP - number_format 函数



语法

inputber_format(inputber,decimals,decimalpoint,separator)

定义和用法

它用于格式化数字,并以千位分隔符分组。

返回值

它返回格式化的数字。

参数

序号 参数及描述
1

number

包含要格式化的数字信息。

2

decimals

指定要设置的小数位数。

3

decimalpoint

指定用于小数点的字符串。

4

separator

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

示例

尝试以下示例

<?php
   $input = 100.9;
   $formattedinput = inputber_format($input)."<br>";
   echo $formattedinput;
   
   $formattedinput = inputber_format($input, 2);
   echo $formattedinput;
?>

这将产生以下结果 -

101
100.90
php_function_reference.htm
广告