php关闭notice警告的方法:1、在php.ini文件中修改内容为“error_reporting=E_ALL & ~E_NOTICE”;2、在禁止notice错误提示的页面中加入“error_reporting(E_ALL...)”。
本文操作环境:Windows7系统、PHP7.1、Dell G3电脑。
PHP关闭notice级别的错误提示
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);
推荐:《PHP视频教程》
以上是php怎么关闭notice警告的详细内容。更多信息请关注PHP中文网其他相关文章!