我在PHP5中遇到了一个奇怪的解析错误... 当我评论第529行时,一切正常。 我没有看到我的错误吗? 我正在检查其他地方是否存在数组键...而且PHP从不抱怨......你看,有什么不对吗?
/* 527 */ if (!isset($secuText)) { $secuText = array("","",""); }
/* 528 */ if (!is_array($secuText)) { $secuText = array("","",""); }
/* 529 */ if (!isset($secuText[0])) { $secuText[0] = ""; }
解析错误:语法错误, /.../ doc-delivery.php 529 中的意外'$ secuText'(T_VARIABLE)
答案 0 :(得分:-1)
尝试使用array_key_exists函数:
/* 527 */ if (!isset($secuText)) { $secuText = array("","",""); }
/* 528 */ if (!is_array($secuText)) { $secuText = array("","",""); }
/* 529 */ if (array_key_exists(0,$secuText) && !isset($secuText[0])) { $secuText[0] ="";