在php开发中经常会出现undefined index这种错误提示,下面我们看看方法总结吧。
平时用$_post[”],$_get[”]获取表单中参数时会出现notice: undefined index: ——–;
服务器配置修改
修改php.ini配置文件,
代码如下
error_reporting = e_all & ~e_notice
程序判断
代码如下
function _get($str){
$val = !empty($_get[$str]) ? $_get[$str] : null;
return $val;
}
还有一种方法就是在php把错误关闭了代码
代码如下
error_reporting(e_all ^ e_notice);
用isset方法
代码如下
$var = isset($_get[‘a’])?$_get[‘a’]:”;
http://www.bkjia.com/phpjc/629073.htmlwww.bkjia.comtruehttp://www.bkjia.com/phpjc/629073.htmltecharticle在php开发中经常会出现undefined index这种错误提示,下面我们看看方法总结吧。 平时用$_post[”],$_get[”]获取表单中参数时会出现notice: undefine…