84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
在一个API上获取数据,有个数据小数点比较长,然后你获取的时候就变成了科学计数法,网上找了很久,有没有好一点的方法让他显示原始小数点6.0E-12 转化,谢谢各位了
光阴似箭催人老,日月如移越少年。
嗯,找到解决方法了 function sctonum($num, $double = 5){ if(false !== stripos($num, "e")){ $a = explode("e",strtolower($num)); return bcmul($a[0], bcpow(10, $a[1], $double), $double); } } echo sctonum(2.1E-5, 6); //输出0.000021
如不需要运算获取到后改用字符串,如需运算建议用PHP的BC*高精确度函数
number_format不能满足需求?
如不需要运算获取到后改用字符串,如需运算建议用PHP的BC*高精确度函数
number_format不能满足需求?