PHP獲取表單並使用數組存儲 瘋狂提示 Notice: Undefined offset
阿新 • • 發佈:2018-09-02
fse off lin fine undefine ++ radio 導致 php.ini
1 $answer=array(); 2 $answer[0]=‘0‘; 3 for($i=1;$i<=$QUESTION_COUNT;$i++){ 4 $answer[$i]=$_POST[(string)$i]; //報錯的第18行 5 if($i<=($CHOOSE_COUNT+$FILL_COUNT)){ 6 if($answer[$i]==$right_answer[$i-1]){ 7 $grade=$grade+5; 8 $right_count++; 9 }else{ 10 $wrong_count++; 11 } 12 } 13 }//for
二話不說,先上報錯部分代碼!
運行後如下提示:
Notice: Undefined offset: 1 in E:\wwwroot\center.php on line 18
Notice: Undefined offset: 2 in E:\wwwroot\center.php on line 18
Notice: Undefined offset: 3 in E:\wwwroot\center.php on line 18
Notice: Undefined offset: 4 in E:\wwwroot\center.php on line 18
Notice: Undefined offset: 5 in E:\wwwroot\center.php on line 18
原因:
剛開始一出現在網上也查了,很多人都是讓你去修改php.ini,讓它不顯示,我覺得這不是自欺欺人麽(雖然可行簡單粗暴),為什麽不去尋找出現原因去改變自己的代碼。
錯誤原因:前端HTML提交表單時各個輸入空著不填導致報錯,使得 $_POST[(string)$i] 賦值給數組時並且去使用數組是出現的未定義現象(簡單來說就是後端沒有判斷前端表單項是否填寫了,如radio沒選擇)。
解決:
先上代碼
1 $answer=array(); 2 $answer[0]=‘0‘; 3 for($i=1;$i<=$QUESTION_COUNT;$i++){4 if(!isset($_POST[(string)$i])){//先判斷是否定義 5 $answer[$i]=‘0‘; //未定義則手動賦值 6 }else{//定義了則直接賦值 7 $answer[$i]=$_POST[(string)$i]; 8 if($i<=($CHOOSE_COUNT+$FILL_COUNT)){ 9 if($answer[$i]==$right_answer[$i-1]){ 10 $grade=$grade+5; 11 $right_count++; 12 }else{ 13 $wrong_count++; 14 } 15 } 16 } 17 }//for
在將前端傳來的值用isset()進行檢查是否未定義,若未定義則進行手動賦值(我的web應用的情況需要手動賦值),你可以用別的方法反饋給用戶。
PHP獲取表單並使用數組存儲 瘋狂提示 Notice: Undefined offset