"PHP number format()"의 두 판 사이의 차이

12번째 줄: 12번째 줄:


==같이 보기==
==같이 보기==
*[[round()]]
*[[PHP money_format()]]
*[[PHP sprinf()]]
*[[PHP prinf()]]
*[[PHP sscanf()]]
*[[함수 round()]]


==참고 자료==
==참고 자료==

2015년 7월 13일 (월) 09:57 판

1 개요

number_format()
$num = 1234.5678;
echo number_format($num);
echo number_format($num,2);
echo number_format($num,6);
# 1,235
# 1,234.57
# 1,234.567800

2 같이 보기

3 참고 자료

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}