php怎么关闭notice警告

Դhttp://www.6cu.com

ߣ网站外链发布

18

2021-03-23 12:08:37

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);

推荐:《》

佭ϴý Ѷ Media8ý

在线客服

外链咨询

扫码加我微信

微信:xmbfjc

返回顶部