写信给我:
Message: Undefined offset: 1
Message: Undefined offset: 2
Message: Undefined offset: 3
Message: Undefined offset: 4
行号:93
我的剧本:
$day = 1;
for($i = 0; $day <= $this->datum->format('t'); $i++ )
{
for($j = count($table[$i]); $j < 7 && $day <= $this->datum->format('t'); $j++)
{
$table[$i][$j] = $day++;
}
}
第93行:
for($j = count($table[$i]); $j < 7 && $day <= $this->datum->format('t'); $j++)
我阅读了讨论,但没有任何可以解决我的问题。 提前谢谢你,抱歉我的英语不好。
答案 0 :(得分:0)
由于在引用行中您只索引$table
数组,因此错误输出意味着$table
数组没有索引为1,2,3或4的元素。
如果没有关于代码的更多信息,则不清楚为什么这些元素不存在。我建议您输出$table
数组的内容以进行调试,并将其与应该存在的数据进行比较。