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.
0.2以降の数値を切り上げようとしているので、たとえば、数値が10.19の場合、10.20以上の場合は10と表示されます。
ラウンド関数について読みましたが、上記の効果を実現する方法がわかりません。
あなたはこれを試すことができます:
$rounded = ceil( $yournumber - 0.2 );
0.3を追加するだけです。
rounded = round(original + 0.3)
そうすると、元の値10.2は10.5になり、11に丸められます。
または、0.8を追加してからを使用することもできますfloor。
floor
(これはすべて正の値を想定しています。数値が負になる可能性がある場合は、もう少し作業を行う必要があります。)