douhuang3833 2017-02-14 17:28
浏览 69
已采纳

PHP致命错误:For循环中不支持的操作数类型

I got an Error in my For Loop for some reason. I just want to go backwards through an array in php.

The Error in my Browser is:

Fatal error: Unsupported operand types in /var/html/modules/getChat.php on line 18

Line 18 in this Code part line 1:

Here is the Code:

for($x = sizeof($result-1); $x > 0; $x--)
{
    echo '<div class="message '.$result[$x].'"> <img src="'.$result[$x].'" /><span class="name">'.$result[$x].'</span>
    <p>'.$result[$x].'</p>
    </div>';
}

I hope you can help

Thanks

  • 写回答

1条回答 默认 最新

  • douhai9043 2017-02-14 17:31
    关注

    $result is an array, and substracting 1 from an array doesn't make any sense. You probably wanted to use this instead:

    for ($x = sizeof($result) - 1; $x > 0; $x--) // ...
    

    And yes, it seems that you unintentionally skip the very first element of your array here. If so, fix the condition ($x >= 0) - or just compact the whole loop into while:

    $x = count($result);
    while($x--) {
      // output with $result[$x]
    }
    

    If that's not a bottleneck (and most probably it's not), you better show the real intent of the code with array_reverse:

     foreach (array_reverse($result) as $el) {
        // output with $el
     }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 乘性高斯噪声在深度学习网络中的应用
  • ¥15 运筹学排序问题中的在线排序
  • ¥15 关于docker部署flink集成hadoop的yarn,请教个问题 flink启动yarn-session.sh连不上hadoop,这个整了好几天一直不行,求帮忙看一下怎么解决
  • ¥30 求一段fortran代码用IVF编译运行的结果
  • ¥15 深度学习根据CNN网络模型,搭建BP模型并训练MNIST数据集
  • ¥15 C++ 头文件/宏冲突问题解决
  • ¥15 用comsol模拟大气湍流通过底部加热(温度不同)的腔体
  • ¥50 安卓adb backup备份子用户应用数据失败
  • ¥20 有人能用聚类分析帮我分析一下文本内容嘛
  • ¥30 python代码,帮调试,帮帮忙吧