前台预览会出现Notice,

Notice不是错误,是指通知的意思

Notice: Undefined index: lang in D:\wamp\www\includes\init.php on line 131

Notice: Undefined index: lang in D:\wamp\www\includes\init.php on line 139

Notice: Undefined index: lang in D:\wamp\www\includes\init.php on line 141

我们可以在init.php中屏蔽,在init.php的前几行找到

error_reporting(E_ALL);//E_ALL表示所有的都打开,错误等级设置


改成

error_reporting(E_ALL ^ E_NOTICE );//除去 E_NOTICE 之外的所有错误信息

相关文章:

  • 2021-10-13
  • 2022-12-23
  • 2022-12-23
  • 2021-09-16
  • 2022-12-23
  • 2022-12-23
  • 2021-12-07
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-05-25
  • 2022-12-23
  • 2021-08-21
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案