当前位置:Gxlcms > PHP教程 > php怎么关闭notice

php怎么关闭notice

时间:2021-07-01 10:21:17 帮助过:45人阅读

php关闭notice的方法:首先使用文本编辑器打开php.ini配置文件;然后修改配置【error_reporting=E_ALL & ~E_NOTICE】即可。

方法如下:

(推荐教程:php视频教程)

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培训

以上就是php怎么关闭notice的详细内容,更多请关注gxlcms其它相关文章!

人气教程排行