您的位置首页生活百科

number_format数字格式化

number_format数字格式化

的有关信息介绍如下:

number_format数字格式化

number_format数字格式化

新建php文件

声明一个带有小数点的数字变量

输出格式化的数字

预览效果如图只保留整数部分并且以逗号分隔

输出小数点后保留两位的格式化数字

预览效果如图

附上源码

header('content-type:text/html;charset=gb2312');

$x = 78455396.825667;

echo number_format($x) , '

';

echo number_format($x,2) , '

';