最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
我可以将12345678.9输出成12,345,678.90吗?
时间:2022-07-02 10:42:11 编辑:袖梨 来源:一聚教程网
当然可以,PHP中有个函数number_format,函数原型:
string number_format
(
float number,
int decimals,
string dec_point,
string thousands_sep
)
举个例子:
$num = 12345678.9;
echo number_format($num).'
'; //会4舍5入
echo number_format($num,2).'
';
echo number_format($num,2,':').'
'; //这种写法是错误的
echo number_format($num,2,':','-').'
';
?>
输出结果为:
12,345,679
12,345,678,90
Warning: Wrong parameter count for number_format() in /data/homepage/test/number_format.php on line 5
12-345-678:90
string number_format
(
float number,
int decimals,
string dec_point,
string thousands_sep
)
举个例子:
$num = 12345678.9;
echo number_format($num).'
'; //会4舍5入
echo number_format($num,2).'
';
echo number_format($num,2,':').'
'; //这种写法是错误的
echo number_format($num,2,':','-').'
';
?>
输出结果为:
12,345,679
12,345,678,90
Warning: Wrong parameter count for number_format() in /data/homepage/test/number_format.php on line 5
12-345-678:90
相关文章
- 奇迹暖暖卷二10-6高分有哪些搭配思路 04-30
- 老头看到一美女大冬天还穿超短裙 04-30
- 我看看,在哪一层啊? 04-30
- 我满脸通红的说:这是首付 04-30
- 面试时候也把自己说的很牛B的样子 04-30
- 你们的菜要慢点上,厨师去买土豆了…… 04-30