私はこのphpを持っています
<?php echo round($price, 2); ?>
そしてその $price
多分 1.0000
が欲しいです 1.00
だけですが1
何か案は
number_format 機能します:
echo number_format($price, 2);
number_format が最善の策です。
string number_format ( float $number , int $decimals = 0 , string $dec_point = '.' , string $thousands_sep = ',' )
例:
<?php echo number_format(1.0000, 2, '.', ','); ?>