PHP Notice: Undefined index错误提示的解决办法
程序员文章站
2024-02-15 23:35:35
...
这两天新装了服务器,改为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就可以了。
推荐阅读
-
PHP Notice: Undefined index错误提示的解决办法
-
php中提示Undefined index的解决方法
-
php Notice: Undefined index 错误提示解决方法
-
PHP中出现Notice: Undefined index的三种解决办法_PHP教程
-
php提示PHP Warning: date(): It is not safe to rely on the......错误的解决办法
-
ThinkPHP调用common/common.php函数提示错误function undefined的解决方法_php实例
-
PHP Notice: Undefined index: ... 问题的解决方法:
-
PHP错误Notice: Undefined index解决方法
-
3、PHP 中提示undefined index的几种解决方法
-
php中提示Undefined index的解决方法