gpt4 book ai didi

php - 在 PHP 中向下舍入到最接近的半整数

转载 作者:IT王子 更新时间:2023-10-29 01:04:51 25 4
gpt4 key购买 nike

我需要一个 PHP 函数,它将接受一个 float 并将其向下舍入到最接近的一半(x.0 或 x.5)。我发现其他函数会舍入到最接近的分数,但它们会双向舍入。

我需要的功能只能向下取整

例子

7.778 -> 7.5

7.501 -> 7.5

7.49 -> 7.0

7.1 -> 7.0

最佳答案

$x = floor($x * 2) / 2;

关于php - 在 PHP 中向下舍入到最接近的半整数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3216482/

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