PHP中忽略notice

来源:互联网 发布:文件修复软件 编辑:程序博客网 时间:2024/05/17 08:40
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);
0 0
原创粉丝点击