Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次の 10 進数を持つ:
.00小数点以下のない数値にデフォルトを追加するにはどうすればよいですか?
.00
そのように使用できますnumber_format():
number_format()
number_format($number, 2);
常に小数点以下 2 桁の数値を返します。また、1000 単位は「,」で区切ります (それが必要ない場合は、4 番目のパラメーターとして「」を追加してください)。