PHP number_format() 函数
PHP 教程
· 2019-01-29 18:29:14
实例
格式化数字:
<?php
echo number_format("1000000")."<br>";
echo number_format("1000000",2)."<br>";
echo number_format("1000000",2,",",".");
?>
echo number_format("1000000")."<br>";
echo number_format("1000000",2)."<br>";
echo number_format("1000000",2,",",".");
?>
定义和用法
number_format() 函数通过千位分组来格式化数字。
注释:该函数支持一个、两个或四个参数(不是三个)。
语法
number_format(number,decimals,decimalpoint,separator)
| 参数 | 描述 |
|---|---|
| number | 必需。要格式化的数字。如果未设置其他参数,则数字会被格式化为不带小数点且以逗号(,)作为千位分隔符。 |
| decimals | 可选。规定多少个小数。如果设置了该参数,则使用点号(.)作为小数点来格式化数字。 |
| decimalpoint | 可选。规定用作小数点的字符串。 |
| separator | 可选。规定用作千位分隔符的字符串。仅使用该参数的第一个字符。比如 "xxx" 仅输出 "x"。 注释:如果设置了该参数,那么所有其他参数都是必需的。 |
技术细节
| 返回值: | 返回已格式化的数字。 |
|---|---|
| PHP 版本: | 4+ |
| 更新日志: | 自 PHP 5.4 起,该函数在参数 decimalpoint 和 separator 中支持多字节。在之前的版本中,值使用每个分隔符的第一个字节。 |
更多实例
实例 1
您想要返回一个价格:一个参数将对数字进行舍入(格式化为不带小数位形式),两个参数将给出您想要的结果:
<?php
$num = 1999.9;
$formattedNum = number_format($num)."<br>";
echo $formattedNum;
$formattedNum = number_format($num, 2);
echo $formattedNum;
?>
$num = 1999.9;
$formattedNum = number_format($num)."<br>";
echo $formattedNum;
$formattedNum = number_format($num, 2);
echo $formattedNum;
?>
点击查看所有 PHP 教程 文章: https://codercto.com/courses/l/5.html
Release It!
Michael T. Nygard / Pragmatic Bookshelf / 2007-03-30 / USD 34.95
“Feature complete” is not the same as “production ready.” Whether it’s in Java, .NET, or Ruby on Rails, getting your application ready to ship is only half the battle. Did you design your system to......一起来看看 《Release It!》 这本书的介绍吧!