Answers for "convert scientific notation to decimal php"

PHP
0

convert scientific notation to decimal php

echo sprintf('%f', floatval('-1.0E-5'));//default 6 decimal places
echo sprintf('%.8f', floatval('-1.0E-5'));//force 8 decimal places
echo rtrim(sprintf('%f',floatval(-1.0E-5)),'0');//remove trailing zeros
Posted by: Guest on February-17-2022

Code answers related to "convert scientific notation to decimal php"

Browse Popular Code Answers by Language