未定义的偏移0,如何设置这个数组(Undefined Offset 0 , how can i se

2019-10-18 03:06发布

你好,我有一个未定义的偏移0。 这里面的代码。

$q = mysql_query("SELECT * FROM category");
if (false === $q) {
    echo mysql_error();
}

while ($r = mysql_fetch_row($q)) {
  $names[$r[0]] = $r[2];
  $children[$r[0]][] = $r[1];
}

function render_select($root=0, $level=-1) {
  global $names, $children;
  if ($root != 0)
    echo '<option>' . strrep(' ', $level) . $names[$root] . '</option>';
  foreach ($children[$root] as $child)
    render_select($child, $level+1);
}

echo '<select>';
render_select();
echo '</select>';

确切的行错误所在:

foreach ($children[$root] as $child)
    render_select($child, $level+1);

这是一棵树格式的选择框,我发现这个代码在这个问题上

更高效的层次体系

Answer 1:

有一个在你的代码在这里有些含糊:

if ($root != 0)
    echo '<option>' . strrep(' ', $level) . $names[$root] . '</option>';
  foreach ($children[$root] as $child)
    render_select($child, $level+1);

如果您正试图执行这些三线只有$root != 0 ,你将需要添加花括号是这样的:

if ($root != 0)
{
    echo '<option>' . strrep(' ', $level) . $names[$root] . '</option>';
    foreach ($children[$root] as $child)
    {
        render_select($child, $level+1);
    }
}

否则,随时render_select被称为不带参数(或“0”第一参数值),你会尝试在数组键来访问$儿童元素“0”。 当你的错误指示,$孩子不包含在该键的值。



文章来源: Undefined Offset 0 , how can i set this array