php Undefined index和Undefined variable的解决方法
程序员文章站
2022-05-18 10:17:04
$act=$_post['act']; 用以上代码总是提示 notice: undefined index: act in ...
$act=$_post['act'];
用以上代码总是提示
notice: undefined index: act in f:\windsflybook\post.php on line 18
另外,有时还会出现
引用内容
notice: undefined variable: submit ......
等一些这样的提示
原因:由于变量未定义引起的
解决方法:
1) error_reporting设置:
找到error_reporting = e_all
修改为error_reporting = e_all & ~e_notice
2) register_globals设置:
找到register_globals = off
修改为register_globals = on
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");
即可
用以上代码总是提示
notice: undefined index: act in f:\windsflybook\post.php on line 18
另外,有时还会出现
引用内容
notice: undefined variable: submit ......
等一些这样的提示
原因:由于变量未定义引起的
解决方法:
1) error_reporting设置:
找到error_reporting = e_all
修改为error_reporting = e_all & ~e_notice
2) register_globals设置:
找到register_globals = off
修改为register_globals = on
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");
即可
推荐阅读
-
ThinkPHP调用common/common.php函数提示错误function undefined的解决方法
-
PHP Undefined index报错的修复方法
-
php运行出现Call to undefined function curl_init()的解决方法
-
php Notice: Undefined index 错误提示解决方法
-
php Undefined index和Undefined variable的解决方法
-
PHP Notice: undefined index 完美解决方法 PHPundefined index解决方法
-
ThinkPHP调用common/common.php函数提示错误function undefined的解决方法
-
PHP Undefined index报错的修复方法
-
PHP中出现Notice: Undefined index的三种解决办法
-
PHP报错 Notice: Undefined index和Notice:Undefined offset:解决方法