PHP 소수점E, 소수점 지수부 숫자변환
해결방법1. PHP예제코드01 <?phpsprintf("%f", $input );// input:1.0E-6 output:0.000001?> 1 2 3 <?php sprintf("%f" , $input );// input:1.0E-6 output:0.000001 ?> cs 해결방법2. PHP예제코드02 <?phpstr_replace(",","",number_format( $input ,6 ));// input:1.0E-6 output:0.000001?> 1 2 3 <?php str_replace("," ,"" ,number_format( $input , 6 ));// input:1.0E-6 output:0.000001 ?> cs References [PHP]지수를 숫자로 변환하는 방법 MoveNext - https://movenext.tistory.com/92