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);
また、事前に数値の小数点以下の桁数を読み取ることもできます...例はそのリンクにあります