我一直收到此错误,但不确定如何解决。我进行了搜索,但没有一个答案真正对我有帮助。
我从以下代码中删除:
$child3 !== null && strlen($child3) > 0 ? array_push($children, (int)$child3) : null;
此代码:
is_array($child3) && count($child3) > 0 ? array_push($children, (int)$child3) : null;
问题仍然存在,我不确定如何解决。
我认为我仍然需要检查其他内容,但不确定。