php消除notice的方法:1、在php.ini文件中將error_reporting改為“E_ALL & ~E_NOTICE”;2、在禁止notice錯誤提示的頁面中添加“error_reporting(0);”。
本文操作環境:windows7系統、PHP7.1版、Dell G3電腦。
php怎么消除notice?
PHP關閉notice級別的錯誤提示
1、在php.ini文件中改動error_reporting改為:
error_reporting=E_ALL & ~E_NOTICE
2、如果你不能操作php.ini文件,你可以使用如下方法
在你想禁止notice錯誤提示的頁面中加入如下代碼:
error_reporting(E_ALL^E_NOTICE);
或
error_reporting(0);
推薦學習:《PHP視頻教程》