doze79040 2019-07-07 19:05
浏览 97
已采纳

PHP如果for循环中的条件具有浮点数[duplicate]

This question already has an answer here:

An if condition in a for loop would stop working after (n) times.

I'm using PHP 7.3.6-1+ubuntu18.04.1+deb.sury.org+1

Given the following code:

for($i = 0.99; $i<= 30.99; $i++){
    echo $i;
    if($i == 10.99){
        echo '<--- selected';
    }
    echo '<br>';
}

output

0.99
1.99
2.99
3.99
4.99
5.99
6.99
7.99
8.99
9.99
10.99<--- selected
11.99
12.99
13.99
14.99
15.99
16.99
17.99
18.99
19.99
20.99
21.99
22.99
23.99
24.99
25.99
26.99
27.99
28.99
29.99

This remain true when the condition is between 0.99 - 15.99, However, changing the condition between 16.99 - 29.99, <--- selected is not returned.

I ran few tests using int in my loop as shown below and it seems to work fine.

for($i = 0; $i<= 30; $i++){
    echo $i;
    if($i == 18){
        echo '<--- selected';
    }
    echo '<br>';
}

I think the problem is related to this float (0.99 - 30.99).

</div>
  • 写回答

2条回答 默认 最新

  • drh37116 2019-07-07 19:14
    关注

    A possible solution is to make the numbers string and that way compare them.
    Using "10.99" on one side and number_format on the other

    for($i = 0.99; $i<= 30.99; $i++){
        echo $i;
        if(number_format($i,2) == "22.99"){
            echo '<--- selected';
        }
        echo "
    ";
    }
    

    https://3v4l.org/mvOR3

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥120 计算机网络的新校区组网设计
  • ¥20 完全没有学习过GAN,看了CSDN的一篇文章,里面有代码但是完全不知道如何操作
  • ¥15 使用ue5插件narrative时如何切换关卡也保存叙事任务记录
  • ¥20 海浪数据 南海地区海况数据,波浪数据
  • ¥20 软件测试决策法疑问求解答
  • ¥15 win11 23H2删除推荐的项目,支持注册表等
  • ¥15 matlab 用yalmip搭建模型,cplex求解,线性化处理的方法
  • ¥15 qt6.6.3 基于百度云的语音识别 不会改
  • ¥15 关于#目标检测#的问题:大概就是类似后台自动检测某下架商品的库存,在他监测到该商品上架并且可以购买的瞬间点击立即购买下单
  • ¥15 神经网络怎么把隐含层变量融合到损失函数中?