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.
たとえば、269.00の数値を丸めたいのですが、次のように丸めます
round($price, 2)
これは269を出力しますが、269.50のような値がある場合は269.5を出力し、最後にゼロを付けたいと思います。これは製品の価格設定用です
number_format後で使用:
number_format
$price = number_format(round($price, 2), 2);
これにより、千単位の区切りとしてコンマも追加されます。