84669 人が学習中
152542 人が学習中
20005 人が学習中
5487 人が学習中
7821 人が学習中
359900 人が学習中
3350 人が学習中
180660 人が学習中
48569 人が学習中
18603 人が学習中
40936 人が学習中
1549 人が学習中
1183 人が学習中
32909 人が学習中
在一个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不能满足需求?