php怎么消除notice
时间:2022-02-11 13:47
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改为: 2、如果你不能操作php.ini文件,你可以使用如下方法 在你想禁止notice错误提示的页面中加入如下代码: 或 推荐学习:《PHP视频教程》 以上就是php怎么消除notice的详细内容,更多请关注gxlsystem其它相关文章!error_reporting=E_ALL & ~E_NOTICE
error_reporting(E_ALL^E_NOTICE);
error_reporting(0);