前台预览会出现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 之外的所有错误信息