出力方法として
sprintfとprintfとnumber_formatがある。
1 2 3 4 5 |
echo sprintf('%.2f','101.5'); printf('%.2f','101.5'); echo number_format('101.5',2) 101.50 |
出力方法として
sprintfとprintfとnumber_formatがある。
1 2 3 4 5 |
echo sprintf('%.2f','101.5'); printf('%.2f','101.5'); echo number_format('101.5',2) 101.50 |