PHP Notice: Undefined index错误提示的解决办法
程序员文章站
2022-05-11 15:29:21
...
这两天新装了服务器,改为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正则表达式判断浏览器语言实例
下一篇: 全方面了解和学习PHP框架
推荐阅读
-
ThinkPHP调用common/common.php函数提示错误function undefined的解决方法
-
php Notice: Undefined index 错误提示解决方法
-
PHP运行出现Notice : Use of undefined constant 的解决办法
-
ThinkPHP调用common/common.php函数提示错误function undefined的解决方法
-
PHP中出现Notice: Undefined index的三种解决办法
-
PHP提示Notice: Undefined variable的解决办法
-
PHP运行出现Notice : Use of undefined constant 的解决办法
-
关于PHP Undefined index的错误提示_PHP教程
-
ThinkPHP调用common/common.php函数提示错误function undefined的解决方法,thinkphpcommon.php
-
php提示Notice: Undefined index怎么办