>>>>>>>>>>>>>>>>>>>>
2017-01-31
如果你不能操作php.ini文件,你可以使用如下方法
在你想禁止notice错误提示的页面中加入如下代码:
/* Report all errors except E_NOTICE */
error_reporting(E_ALL^E_NOTICE);
亲测可用
在你想禁止notice错误提示的页面中加入如下代码:
/* Report all errors except E_NOTICE */
error_reporting(E_ALL^E_NOTICE);
亲测可用
2017-01-24
php.ini的报错等级设置为:error_reporting = E_ALL & ~E_NOTICE还是没有用,接收不到请求的还是会报错
2017-01-24