>>>>>>>>>>>>>>>>>>>>
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的報錯等級設(shè)置為:error_reporting = E_ALL & ~E_NOTICE還是沒有用,接收不到請求的還是會報錯
2017-01-24