您好,欢迎访问一九零五行业门户网

PHP如何关闭notice级别的错误提示

1、在php.ini文件中改动error_reporting改为:
error_reporting=e_all & ~e_notice
2、如果你不能操作php.ini文件,你可以使用如下方法
在你想禁止notice错误提示的页面中加入如下代码:
/* report all errors except e_notice */
error_reporting(e_all^e_notice);
其它类似信息

推荐信息