PHP Notice: undefined index 完美解决方法
在使用 $_SESSION[$openid] 语句时,提示:Notice: undefined index
有的是在使用 $_GET['u']; 时,提示:Notice: undefined index
简单的解决办法:加一个 empty 方法/函数 判断一下就ok了。
empty($_SESSION[$openid])
empty($_GET['u'])
你也可以试试以下方法:
警告:我没试过!
<?php
//禁用错误报告
error_reporting(0);
//报告除了警告以外的所有错误
error_reporting(E_ALL & ~E_NOTICE);
//报告运行时错误
error_reporting(E_ERROR | E_WARNING | E_PARSE);
//报告所有错误
error_reporting(E_ALL);
?>