douchigu1723 2016-07-10 17:28
浏览 62
已采纳

在for循环返回Null中迭代数组

<?php
//Called at start of page
while( $row = mysqli_fetch_assoc($result)){
    $dataset[] = $row;
}

//Called in middle of page, inside <table><tbody>
$dSize = count($dataset);
for( $i = 0; $i < $dSize; $i++){
//foreach($dataset as $row){
    $row = $dataset[$i];
    $thisIsId = true;
    echo "<tr>";
    $rSize = count($row);
    for( $j = 0; $j < $rSize; $j++){
    //foreach($row as $value){
        $value = $row[$j];
        //Next line output ex: <td id='r1c2' class='editable'>Bob
        echo "<td id='r$i" . "c$j'" . ($thisIsId ? "" : " class='editable'")  . ">$value";
        $thisIsId = false;
    }
}
?>

I'm trying to fill out a table that contains customer information, but $value keeps returning null. The foreach loops that are commented out are left there because these loops worked except I wasn't able to assign an id to the element based on $i and $j (obviously).

If I add a console.log of json_encode($row) after the line $row = $dataset[$i];, I get a JSON object that has all of the values filled out appropriately. As soon as I go into the nested for loop, I keep getting null values for $value AND $row[$j] if I just call that directly.

The ternary operator exists to check if it's the first column (the ID column) because that's the only cell that is not editable.

I've tried using global $row because I ran into a problem with scope in PHP before but it didn't seem to solve anything. I also tried renaming the $row variable to make sure it wasn't a conflict with when I use $row at the beginning of the page, but that also didn't solve anything.

tl;dr Why is $value returning null when used in a for loop but not when used in a foreach loop?

</div>
  • 写回答

2条回答 默认 最新

  • dongyi2534 2016-07-10 17:35
    关注

    mysqli_fetch_assoc returns an associative array and not an ordered array : http://php.net/manual/en/mysqli-result.fetch-assoc.php.

    So the key are the name of the column in your table that's why you cannot loop over it using a for loop. Use a foreach loop instead.

    You should have a E_NOTICE error raised (Undefined index) in your nested loop.

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

报告相同问题?

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?