2

这可能是新手。基本上我

$count_versions = array();
while ($row = mysql_fetch_array($result))
{
    $email_build = $row1['build_info'];
$count_versions[] = $email_build;
    }

现在当我使用print_r我得到这个

Array ( [2660] => 8 [2662] => 6 [2655] => 6 [2666] => 1 ) 

这是完美的,现在我想做的就是输出这些值

2660 - 8 votes
2662 - 6 votes
2655 - 6 votes
2666 - 1 votes

当我尝试这个时,它似乎将值分解回一个完整的数组,这会撤消我的array_count_values但我很难过

我意识到这个foreach循环没有任何意义,但它尽可能地接近,任何想法我基本上可以像print_r这样打印出来,这样我以后可以把它放在桌子上

$i=0;
foreach ($count_versions as $version => $nums)
{
$i++;
echo "Version: " . $nums . " - " . $count_versions . "<br />";
}
4

2 回答 2

4

使用 foreach 看起来很容易:

$count_versions = array ( "2660" => 8, "2662" => 6, "2655" => 6, "2666" => 1 );

foreach ($count_versions  as $key => $value)  
    echo $key.' - '.$value.' votes<br>'; 
于 2013-01-04T10:01:18.060 回答
2
echo "Version: " . $version . " - " . $nums . " votes<br />";
于 2013-01-04T09:59:05.927 回答