当前位置:Gxlcms > PHP教程 > phpUndefinedindex的问题_php技巧

phpUndefinedindex的问题_php技巧

时间:2021-07-01 10:21:17 帮助过:3人阅读

可以再错误语句前加上@

也可以修改PHP.INI

PHP.INI里的error_reporting = E_ALL造成的,如果不希望看到这个提示,可以
error_reporting = E_ALL &~E_NOTICE。

也可在页面顶部加上error_reporting(0); 将禁止本页内任何错误显示

人气教程排行