在php開發時可能會碰到如PHP Notice: undefined index這種錯誤提示,下面我來給大家介紹關於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 = !empty($_GET[$str]) ? $_GET[$str] : null;
return $val;
}
調用方法
_get('str') 代替 $_GET['str'] 即可