1
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'来获取数组的第一个和最后一个元素,但是我该如何找到倒数第二个?

谢谢

4

4 回答 4

1

你为什么不试试:

echo $votes[count($votes)-2];

您也不需要使用相同的值填充另一个数组 - 您可以将它们保存在$votes. 您可能还想研究按值而不是按键对数组进行排序(我假设您正在尝试这样做)。


如果您期望有重复的键,则需要重塑存储数据的方式。考虑使用多维数组:

$votes = array(
   array('name'=>'John','vote'=>10),
   array('name'=>'James','vote'=>11),
   array('name'=>'Jimmy','vote'=>13),
);

您将能够使用此函数和代码对该数组进行排序:

// This function will sort your array
function aasort (&$array, $key) {
    $sorter=array();
    $ret=array();
    reset($array);
    foreach ($array as $ii => $va) {
        $sorter[$ii]=$va[$key];
    }
    asort($sorter);
    foreach ($sorter as $ii => $va) {
        $ret[$ii]=$array[$ii];
    }
    $array=$ret;
}

// Sort the array by the 'vote' key
aasort($votes,"vote");

// Echo out the name of the second-last person
echo $votes[count($votes)-2]['name'];
于 2013-01-27T16:14:12.000 回答
0

用这个:

function secondMax($arr) {
    $max = $second = 0;
    $maxKey = $secondKey = null;

    foreach($arr as $key => $value) {
        if($value > $max) {
            $second = $max;
            $secondKey = $maxKey;
            $max = $value;
            $maxKey = $key;
        } elseif($value > $secondMax) {
            $second = $value;
            $secondKey = $key;
        }
    }

    return array($secondKey, $second);
}

用法:

$second = secondMax($votes);

于 2013-01-27T16:12:02.407 回答
0

您可以使用函数计数来检索它:

$ordervotes[ (count($ordervotes)-2) ]
// the array starts with index 0, so (count($ordervotes)-1) is the last element
于 2013-01-27T16:13:52.540 回答
0

我不明白你的$votes变量中有什么......你怎么会有多个参赛者获得相同的选票(因此,使用相同的密钥)。

我认为这里有一个错误。

你 $votes 应该是这样的:

$votes = array(
    'contestant 1' => 8,
    'contestant 2' => 12,
    'contestant 3' => 3
);

然后订购数组:sort($votes)

最后,获得倒数第二个:$votes[count($votes) - 2];

于 2013-01-27T16:15:52.090 回答