This question already has answers here:
“Notice: Undefined variable”, “Notice: Undefined index”, and “Notice: Undefined offset” using PHP

(28个答案)


1年前关闭。




我最近设置了一个新的Web服务器,但出现了 undefined variable 错误。
如果我没有初始化就使用变量,则会给我一个错误。
源代码未更改。只有LAMP环境可以。
您将如何解决这个问题?

谢谢

最佳答案

好...

  • 您应该定义所有变量,这些警告是有原因的,以使您的代码更好。 undefined variable 很容易导致变量名中出现拼写错误。
  • 您可以在E_NOTICE上方的change the *error_reporting* level消除该问题,但这是极不可取的。
  • 关于php - 如何忽略PHP中 undefined variable 错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5061432/

    10-13 23:19