回答編集履歴

1

2015/02/12 03:19

投稿

endoo
endoo

スコア97

test CHANGED
@@ -2,16 +2,12 @@
2
2
 
3
3
  関数のリンク:
4
4
 
5
- [http://php.net/manual/ja/function.number-format.php](http://php.net/manual/ja/function.number-format.php)
5
+ http://php.net/manual/ja/function.number-format.php
6
6
 
7
7
 
8
8
 
9
9
  サンプルコード:
10
10
 
11
- ```lang-<ここに言語を入力>
12
-
13
11
  $num = "920";
14
12
 
15
13
  echo number_format((float)$num, 2, '.', '');
16
-
17
- ```