Louis - profile image

Louis Ryu

Web Developer

홈페이지 (웹서비스) 개발자
devfrst.com
homepactory@gmail.com
Search - icon image
  • 전체보기 ( 9 )
    • - About
    • Study
      • - Linux ( 4 )
      • - PHP ( 1 )
      • - Javascript ( 1 )
      • - ASP ( 1 )
      • - HTML/CSS ( 0 )
      • - Hosting ( 0 )
      • - Cloud ( 0 )
      • - Windows ( 2 )
      • - etc. ( 0 )
    • - Project ( 0 )
    • - Utility ( 0 )
    • - Review ( 0 )
999 Today
1.2K Yesterday
1,569.5K Total

PHP

PHP 카테고리 게시글 목록 조회

Tags:

#PHP

총 1개의 포스트


  • 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

    Study 연구 > PHP

    2022.04.16 오후3:30





Copyright ⓒ Louis Ryu. All Rights Reserved - devfrst.com

Homepactory@gmail.com