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.
その時点でユーザーがテキストボックスに金額を挿入すると、この形式で金額を挿入したい
100.00 1,000.00
この形式の金額をphpピリオドに挿入する方法とコンマは、適切な場所に配置する必要があります。
このような変数の数値形式を使用します
<?php $number = strip_tags($_POST['number']); echo number_format($number,2);
の 2 番目のパラメーターはnumber_format()、値が必要なレベルまでです。小数点以下2桁までが必要な場合は2になります。整数のみが必要な場合は、int()これにキャストするタイプが役立ちます。:-)
number_format()
int()