1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/** * priceFormat * 价格格式处理 * * @access public * @param null * @since 1.0 * @return object */ if (!function_exists( 'priceFormat' )) { function priceFormat( $price ) { return number_format( $price /100,2); } } number_format(需要转换的数字,保留小数个数,小数点符号,每三位的分隔符) echo number_format( "1000000" ). "<br>" ; //默认显示:1,000,000 echo number_format( "1000000" ,2). "<br>" ; //默认显示:1,000,000.00 echo number_format( "1000000" ,2, "." , "" ); //自定义显示:1000000.00 |