php报错Notice: Undefined variable的解决办法
程序员文章站
2022-05-13 20:08:06
...
从网上下载的源码,在调试时大多出现 Undefined variable的错误。一般情况下,php是不需要定义变量的,但如果服务器什么都报错的,就会出现错误,所以服务器上都是应该屏蔽这种错误的。
从网上下载的源码,在调试时大多出现 Undefined variable的错误。 一般情况下,php是不需要定义变量的,但如果服务器什么都报错的,就会出现错误,所以服务器上都是应该屏蔽这种错误的。 Notice: Undefined variable: email in D:\PHP5\ENOTE\ADDNOTE.PHP on line 9 Notice: Undefined variable: subject in D:\PHP5\ENOTE\ADDNOTE.PHP on line 9 Notice: Undefined variable: comment in D:\PHP5\ENOTE\ADDNOTE.PHP on line 9 ........ 其实以上就是未定义变量,我们就直接判断变量的代码导致。 本来php是不需要定义变量的,但是出现这种情况应该怎么办呢? 只要在C:\WINDOWS找出php.ini的 在php.ini中的302行 error_reporting = E_ALL 修改成 error_reporting = E_ALL & ~E_NOTICE 再重启apache2.2就行了 解决方法:修改php.ini 将: error_reporting = E_ALL 修改为:error_reporting = E_ALL & ~E_NOTICE 如果什么错误都不想让显示,直接修改: display_errors = Off 如果你没有php.ini的修改权限,可在php头部加入: ini_set("error_reporting","E_ALL & ~E_NOTICE"); |
推荐阅读
-
PHP运行出现Notice : Use of undefined constant 的完美解决方案_PHP
-
PHP使用Session遇到的一个Permission denied Notice解决办法
-
php “Call to undefined function: mb_substr()”的解决办法
-
PHP加密3DES报错 Call to undefined function: mcrypt_module_open 的解决方法
-
PHP Undefined index报错的修复方法
-
PHP提示 Notice: Undefined variable
-
php用windows COM组件调用openoffice接口实现word转pdf文件时报错的解决办法
-
PHP运行出现Notice : Use of undefined constant 的完美解决方案分享
-
PHP运行出现Notice : Use of undefined constant 的解决办法
-
WxParse:thirdScriptError undefined;at xxx/xxx/xxx onLoad function;at api request success callback报错的解决办法