Home > php教程 > php手册 > PHP Notice: Undefined index错误提示的解决办法

PHP Notice: Undefined index错误提示的解决办法

WBOY
Release: 2016-06-13 09:35:50
Original
1267 people have browsed it

   这两天新装了服务器,改为Apache+PHP5.4.3,配置好后运行PHP网站,出现了一个错误提示:“PHP Notice: Undefined index ...”

  具体的信息为:

  PHP Notice: Undefined index: page in d:\myqy\andread.php on line 56

  出现此错误的信息个人认为可能是php.ini配置问题。

  解决办法:

  打开PHP的配置文件php.ini,搜索error_reporting,找到如下行:

  error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT

  修改成:

  error_reporting = E_ALL & ~E_NOTICE

  然后重启apache就可以了。

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template