如果我有一个号码:
$num = 0.00638835;
平均为100个条目。我想找到平均值并打印出来。
$avg = $num/100;
我的结果打印为:
echo $avg;
6.38835E-5
如何将其打印为:
.000004928 //or whatever the number is
答案 0 :(得分:4)
https://www.w3schools.com/php/func_string_number_format.asp
$num = 0.00638835;
$avg = $num/100;
echo number_format ($avg, 8);
0.00006388
答案 1 :(得分:0)
echo number_format($a, 10);
使用数字格式,您可以选择任意数量的小数
答案 2 :(得分:0)
$ num = 0.00638835;
$ avg = $ num / 100;
echo number_format($ avg,8);