개발자의 끄적끄적

[php] convert number to Scientific notation example 본문

개발/php

[php] convert number to Scientific notation example

효벨 2021. 3. 16. 03:00
728x90
반응형

[php] convert number to Scientific notation example

 

 

php 에서

 

정수나 소수 같은 숫자를 줄여서

 

즉, Scientific notation 으로 표기해야하는 경우가 있습니다.

 

그럴때는 아래처럼 sprintf 를 이용하면 됩니다.

 

sprintf("%E", floatval($val));

 

위 내용 보시면 아시겠지만, 

 

sprinf("format", "value");

 

형식으로 입력하시면 되구요.

 

format 에는 %e 와 %E 가 있는데,

 

%e 는 1.5e+4 처럼 소문자로

%E 는 1.5E+4 처럼 대문자로

 

출력되게 됩니다!

 

참고들하세요!

반응형
Comments