해결방법1. PHP예제코드01
1 2 3 | <?php sprintf("%f", $input );// input:1.0E-6 output:0.000001 ?> | cs |
해결방법2. PHP예제코드02
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