ksort ($votes);
foreach ($votes as $total => $contestant){
$ordervotes[]= $contestant;
}
echo "<li> And the winner is: {$ordervotes[4]}</li>";
echo "<li> And the loser is: {$ordervotes[0]}</li>";
echo "<li> {$ordervotes[1]} came second last</li>";
当'$total'都不相同时,这可以正常工作,如果它们相同,我会收到错误代码。我意识到我可以使用'max/min'来获取数组的第一个和最后一个元素,但是我该如何找到倒数第二个?
谢谢
乔