标签: php format
我目前正在研究处理逗号后面有很多位数的变量的代码。
此时,我有一个包含830 / 1E8的变量;这个变量的结果给了我8.3E-6,我怎样才能让PHP以这样的格式返回结果; 0.00000830?
答案 0 :(得分:1)
使用number_format方法并指定小数位数
echo number_format(8.3E-6, 8); // => 0.00000830