Notice: Undefined offset: 0 in

后端 未结 14 1622
太阳男子
太阳男子 2020-11-28 11:05

I am getting this PHP error, what does it mean?

Notice: Undefined offset: 0 in 
C:\\xampp\\htdocs\\mywebsite\\reddit_vote_tut\\src\\votes.php on line 41
         


        
14条回答
  •  情歌与酒
    2020-11-28 11:34

    first, check that the array actually exists, you could try something like

    if (isset($votes)) {
       // Do bad things to the votes array
    }
    

提交回复
热议问题