如何修复PHP注意:未定义的索引(不显示'文件错误')

时间:2015-08-12 07:34:05

标签: php wordpress undefined

我在wordpress ver 4.2.4中为这个警告调试得到了太多 但是他们没有显示哪个文件发出了这个警告。

debug.log仅显示此消息。

PHP Notice:  Undefined offset: 4
PHP Notice:  Undefined index: 36
PHP Notice:  Undefined property: stdClass::$unread
PHP Notice:  Undefined index: topicname

如何找到并修复此警告?

1 个答案:

答案 0 :(得分:-1)

您可以根据需要在索引文件中使用以下php代码

//关闭所有错误报告

的error_reporting(0);

OR

//报告除E_NOTICE之外的所有错误

error_reporting(E_ALL& ~E_NOTICE);