php提示Notice: Undefined index怎么办
php提示Notice: Undefined index解决方法
php提示Notice: Undefined index问题,Undefined index:是指你的代码里存在:“变量还未定义、赋值就使用”的错误,这个不是致命错误,不会让你的php代码运行强行中止,但是有潜在的出问题的危险......
在读数据时出现:
Notice: Undefined index: name in ...... Notice: Undefined index: key in......
源码如下:
$name = isset($_POST['name']) ? filter_input(INPUT_POST, 'name', FILTER_SANITIZE_SPECIAL_CHARS) :htmlspecialchars($_GET['name']); $key = isset($_POST['key']) ? filter_input(INPUT_POST,'key',FILTER_SANITIZE_SPECIAL_CHARS) :htmlspecialchars($_GET['key']);
问题分析:
Undefined index:是指你的代码里存在:“变量还未定义、赋值就使用”的错误,这个不是致命错误,不会让你的php代码运行强行中止,但是有潜在的出问题的危险,因此建议修改~~~~
解决方法:
用php.ini中error_reporting = E_ALL & ~E_NOTICE 可以关闭notice的显示,屏蔽掉此类警告好,不过,建议还是改代码更好一点,代码总是写的规范一点好,将来可以少出问题啊。
问题原因:是因为你只检查$_POST是否存在,却没检查$_GET的存在 。
完美的解决方法:修改为下面所示即可:
$name = isset($_POST['name']) ? filter_input(INPUT_POST,'name',FILTER_SANITIZE_SPECIAL_CHARS) : isset($_GET['name']) ? filter_input(INPUT_POST,'name',FILTER_SANITIZE_SPECIAL_CHARS) : ''; $key = isset($_POST['key']) ? filter_input(INPUT_POST,'key',FILTER_SANITIZE_SPECIAL_CHARS) : isset($_GET['key']) ? filter_input(INPUT_POST,'key',FILTER_SANITIZE_SPECIAL_CHARS) : '';
首先,这个不是错误,是warning。所以如果服务器不能改,每个变量使用前应当先定义。
方法1:服务器配置修改
修改php.ini配置文件,error_reporting = E_ALL & ~E_NOTICE
方法2:对变量进行初始化,规范书写(比较烦琐,因为有大量的变量)。但还没有找到好定义方法,望大家指教
方法3:每个文件头部加上:error_reporting(0); 如果不行,只有打开php.ini,找到display_errors,设置为display_errors = Off。以后任何错误都不会提示。
方法4 :做判断:isset($_GET["page"]) if-else判断
或者加上''@''表示这行如果有错误或是警告不要輸出
如:@$page=$_GET["page"]
方法5:file1.php文件把$xx变量付一个值,用post传递给file2.php,
如果file2.php没有$xx的定义,而直接使用$yy=$xx; 系统就会报错:"undifined variaable $xx", 如果file2.php的文件开始用$xx="";定义,那么file1.php的$xx值就传不过来了!
file2.php里可以这样
if(!isset($xx)) $xx="";
==========================
方法3:每个文件头部加上:error_reporting(0); 解决
更多相关技术文章,请访问PHP中文网!
上一篇: php手册当中的问题
推荐阅读
-
Notice: Undefined index: page in E:PHP est.php on line 14
-
ThinkPHP调用common/common.php函数提示错误function undefined的解决方法
-
Notice: Undefined index: page in E:PHP est.php on line 14
-
PHP Undefined index报错的修复方法
-
Notice: Undefined index: page in E:PHP est.php on line 14
-
php Notice: Undefined index 错误提示解决方法
-
IIS下PHP连接数据库提示mysql undefined function mysql_connect()
-
PHP提示 Notice: Undefined variable
-
PHP运行出现Notice : Use of undefined constant 的完美解决方案分享
-
PHP运行出现Notice : Use of undefined constant 的解决办法