본문으로 바로가기

숫자에 콤마 찍기

category 웹코딩PHP 9년 전


number_format ( )

숫자를 인수로 받아서 천단위마다 콤마를 찍어주거나 소수점 자릿수를 표시하는 출력형태를 조정해주는 함수입니다.
number_format( 값 ); 형태로 사용합니다.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
        $money = 123123123;
        echo $money;
        echo "";
        echo number_format($money);
        echo "<br>";
        echo "<br>";
        echo "<br>";
 
 
        $money = 123123123.111111;
        echo $money;
        echo "<br>";
        echo number_format($money);
        echo "<br>";
        echo number_format($money, 3);
?>
결과화면