php Undefined index和Undefined variable的解决方法
发布:smiling 来源: PHP粉丝网 添加日期:2013-11-29 21:33:00 浏览: 评论:0
$act=$_POST['act'];用这段代码总是提示:Notice: Undefined index: act in F:windsflybookpost.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:PHP5ENOTEADDNOTE.PHP on line 9
- Notice: Undefined variable: subject in D:PHP5ENOTEADDNOTE.PHP on line 9
- Notice: Undefined variable: comment in D:PHP5ENOTEADDNOTE.PHP on line 9
- ........
本来php是不需要定义变量的,但是出现这种情况应该怎么办呢? 只要在C:WINDOWS找出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"); 即可
Tags: Undefined index Undefined variable
相关文章
- ·Call to undefined function php() (2013-11-28)
- ·Fatal error: Call to undefined function curl_init(2013-11-28)
- ·php Undefined variable和 Undefined index(2013-11-28)
- ·php Notice : Use of undefined constant解决办法(2013-11-30)
- ·Notice:undefined index ..错误提示解决方法(2013-12-02)
- ·PHP Notice: undefined index原因与解决办法(2013-12-03)
- ·php提示 Notice: Use of undefined constant name - assumed(2013-12-04)
- ·php提示Notice: Undefined index 错误解决办法(2014-03-10)
- ·php提示undefined index解决方法(2014-03-22)
- ·undefined function mysql_connect(2014-09-11)
- ·php Call to undefined function mssql_connect()(2014-09-12)
- ·XAMPP使用CURL提示“Call to undefined function curl_init”问题(2014-09-12)
- ·PHP5.3提示Fatal error: Undefined class constant MYSQL_ATTR_INIT_COMMAND(2014-09-20)
- ·php提示Undefined variable:引发的几个操作php-fpm等(2014-09-20)
- ·php Notice:Undefined index错误解决办法(2014-09-21)
- ·php-fpm出现Undefined variable几个解决办法(2014-09-21)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)