공부하자/PHP

[PHP] 세자리 콤마 넣기[화폐]

YoBot 2019. 1. 3. 13:06

[PHP] 세자리 콤마 넣기[화폐]


number_format('변경할 숫자');


사용 예제

1
2
3
4
5
<?php
  echo number_format(100000)."<br />\n"# 100,000
  echo number_format(1000)."<br />\n";   # 1,000
  echo number_format(10)."<br />\n";     # 10
?>

cs



천자리 쉼표 넣기에 원하는 소수점 이하 출력하기


사용 예제

1
2
3
4
5
<?php
  echo number_format(10000.55553), "<br />\n"# 10,000.556
  echo number_format(1000.5552), "<br />\n";   # 1,000.56
  echo number_format(1000.5551), "<br />\n";   # 1,000.6
?>
cs