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.
我目前正在研究处理逗号后有很多数字的变量的代码。
此时,我有一个包含 830 / 1E8 的变量;这个变量的结果给了我 8.3E-6,我怎样才能让 PHP 以这样的格式返回结果;0.00000830 ?
使用 number_format 方法并指定小数位数
echo number_format(8.3E-6, 8); // => 0.00000830