PHP运行出现Notice

Posted solvit

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP运行出现Notice相关的知识,希望对你有一定的参考价值。

问题

  Notice:Noticephp 的提示而非报错,PHP本身不需要事先声明变量即可直接使用,但是对未声明变量会有提示。在网站正式开始运行时,会把提示关了的。


关闭PHP提示的方法

搜索php.ini

error_reporting = E_ALL

改为:

  error_reporting = E_ALL & ~E_NOTICE

还有个不是办法的办法就是:

  在每个文件头上加

  error_reporting(0);

  虽然不好弄但是可以解决问题


<span style="font-size:18px;">
<?php
//禁用错误报告
error_reporting(0);
//报告除了警告以外的所有错误
error_reporting(E_ALL & ~E_NOTICE);
//报告运行时错误
error_reporting(E_ERROR | E_WARNING | E_PARSE);
//报告所有错误
error_reporting(E_ALL);
?></span>

 

以上是关于PHP运行出现Notice的主要内容,如果未能解决你的问题,请参考以下文章

关于运行php项目出现乱码的问题

php提示Notice: Undefined index解决方法

php json解析 出现问题 Notice: Trying to get property of non-object in。。。

php,二维数组的输出出现了问题,提示:Notice: Array to string conversion

php问题求助,Notice: Undefined offset: 1 ,我的数组下标没有越界啊?为啥会有这样的提示呢?

undefined index: php中提示Undefined ...