PHP关闭notice级别的错误提示

来源:互联网 发布:pstn网络 编辑:程序博客网 时间:2024/05/18 20:52
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
原创粉丝点击