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.
$a =99.99999; echo $f = sprintf ("%.2f", $a);
出力値は100.00
100.00
しかし、私は必要です99.99
99.99
誰でもこれを助けてくれますか
http://3v4l.org/LdHLA
echo intval((99.99999*100))/100;
ここから取得:
number_format() で数値を切り上げないようにする方法
以下のコードを使用すると、必要なものが得られます
echo number_format($a,2);