Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我必须显示一个计算出来的数字,有时它非常小,显示如下:
1.0E-8.
我怎样才能显示它
0.00000001
http://php.net/manual/en/function.number-format.php
echo number_format($floatVariable, 8);
您还可以事先阅读数字中有多少小数...示例在该链接上