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

25번째 줄: 25번째 줄:
* [[함수 round()]]
* [[함수 round()]]
* [[함수 toFixed()]]
* [[함수 toFixed()]]
* [[함수 thousand_format()]]
* [[함수 number_format()]]
* [[함수 number_format()]]
* [[함수 thousand_format()]]


==참고==
==참고==

2018년 8월 16일 (목) 09:44 판

1 개요

PHP number_format()
<?php
$num = 1234.5678;
echo number_format($num);
# 1,235
echo number_format($num,2);
# 1,234.57
echo number_format($num,2,'','');
# 123457
echo number_format($num,2,'.','');
# 1234.57
echo number_format($num,6);
# 1,234.567800

2 같이 보기

3 참고

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