案例:php案例     状态:不可编辑再运行    进入竖版
 运行结果 
x
 
1
2
3
4
<!DOCTYPE html>
5
<html>
6
<body>
7
8
<?php
9
$num = 4999.9;
10
$formattedNum = number_format($num)."<br>";
11
echo $formattedNum;
12
$formattedNum = number_format($num, 2);
13
echo $formattedNum;
14
?>
15
  
16
</body>
17
</html>
18
19
20