gpt4 book ai didi

PHP 舍入小数

转载 作者:可可西里 更新时间:2023-11-01 12:48:09 26 4
gpt4 key购买 nike

是否可以像这样使用 PHP 将小数舍入到最接近的 .5:

number | round
----------------
1.29 | 1.50
2.03 | 2.00
1.43 | 1.50
1.13 | 1.00
11.38 | 11.50

我试过:

$rnd= round($number,2);

但我得到的小数就像上面“数字”列中的小数。

最佳答案

function round_to_nearest_half($number) {
return round($number * 2) / 2;
}

关于PHP 舍入小数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3094173/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com