我可以看到我想看到的输出,但有 2 个我无法理解的错误:
Notice: Undefined offset: 0 in C:\wamp\www\dash\handle_dashim.php on line 23
Notice: Trying to get property of non-object in C:\wamp\www\dash\handle_dashim.php on line 23
代码的重要部分:
//move the objects into array.
$dasharr=array();
$i=1;
while(($row = mysql_fetch_array($dashim))) {
$dasharr[$i]=new dash($row["name"],$row["msg"],$row["msg_date"],$row["votes"]);
$i++;
}
//checks the object with the most votes.
$numofdash=count($dasharr);
$mostvotes=$dasharr[$numofdash];
while($numofdash>0){
if(($mostvotes->votes)<($dasharr[$numofdash-1]->votes)){ //line 23
$mostvotes=$dasharr[$numofdash-1];
}
$numofdash--;
}
echo $mostvotes->name; //I can see the output that I want
?>