PHP Notice: undefined index原因与解决办法
发布:smiling 来源: PHP粉丝网 添加日期:2013-12-03 22:18:19 浏览: 评论:0
在php开发时可能会碰到如PHP Notice: undefined index这种错误提示,如 $_GET['aa']; 就会出现PHP Notice: undefined index ‘aa‘了。
下面我来总结出现PHP Notice: undefined index 解决办法。
1、php.ini配置文件,error_reporting = E_ALL & ~E_NOTICE
2、加个isset函数 isset($_GET["page"]) if-else判断
还有一个办法就是自定一个函数,这样就直接使用函数操作,代码如下:
- function _get($str){
- $val = !emptyempty($_GET[$str]) ? $_GET[$str] : null;
- return $val;
- }
调用方法:_get('str') 代替 $_GET['str'] 即可.
Tags: Notice: undefined index
- 上一篇:修改mysql密码phpmyadmin不能登录
- 下一篇:php 字符串编码转换程序
相关文章
- ·Notice:undefined index ..错误提示解决方法(2013-12-02)
- ·php提示 Notice: Use of undefined constant name - assumed(2013-12-04)
- ·php Notice:Undefined index错误解决办法(2014-09-21)
- ·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 Undefined index和Undefined variable的解决方法(2013-11-29)
- ·php Notice : Use of undefined constant解决办法(2013-11-30)
- ·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)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)